Hi All,
I have a cell text with a comma delimited line so I have
Report_date, report_due, Report_Severity, report_order, Report_work_center. I can wrap the text of the grid cell by setting the tableLayout="fixed" and setting the style property like below
Any help will be greatly appreciated.
I have a cell text with a comma delimited line so I have
Report_date, report_due, Report_Severity, report_order, Report_work_center. I can wrap the text of the grid cell by setting the tableLayout="fixed" and setting the style property like below
.itemNameColumn span { display: block; width: 500px; word-wrap: break-word; }
My problem is the line that is displayed is chopped off in between so I get Report_date, report_due, report_sev on one line of the cell and then I get erity, report_order on another line. Is it possible that chopping off occurs at comma rather than in the middle of the text. Below is my radgrid. I am trying to display this huge comma delimited line "Select List" grid template column.
<telerik:RadGrid ID="RadGrid_LoadQuery" Width="100%" AllowSorting="false" AllowPaging="false" AllowMultiRowSelection="True" runat="server" GridLines="Both" ExportSettings-ExportOnlyData="true"> <MasterTableView RetrieveAllDataFields="true" AutoGenerateColumns="false" TableLayout="Fixed"> <Columns> <telerik:GridTemplateColumn HeaderText="Export Name"> <ItemTemplate> <asp:Label ID="lblExportName" runat="server" Text='<%#Bind("ExportName") %>'></asp:Label> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn HeaderText="Select List" ItemStyle-CssClass="itemNameColumn" ItemStyle-Width="1000px"> <ItemTemplate> <asp:Label ID="lblSelect" runat="server" Text='<%#Bind("SelectColumnList") %>'></asp:Label> </ItemTemplate> </telerik:GridTemplateColumn> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid>Any help will be greatly appreciated.