Hi,
I open a RadWindow with a grid inside. The problem is that the right border does not appear correctly (See attached image).
<telerik:RadGrid ID="grdStList" runat="server" AutoGenerateColumns="False" Skin="Bootstrap"> <MasterTableView NoMasterRecordsText="" DataKeyNames="VA_ARTIKEL" > <Columns> <telerik:GridBoundColumn DataField="ANZAHL" UniqueName="ANZAHL"> <HeaderStyle HorizontalAlign="Right" /> <ItemStyle VerticalAlign="Top" HorizontalAlign="Right" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="VA_ARTIKEL" UniqueName="VA_ARTIKEL"> <ItemStyle VerticalAlign="Top" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn UniqueName="BEZEICHNUNG"> <ItemStyle VerticalAlign="Top" Wrap="false"/> <ItemTemplate> <span><%# Eval("BEZEICHNUNG").ToString & " " & Eval("BEZEICHNUNG_ZUSATZ1").ToString & " " & Eval("BEZEICHNUNG_ZUSATZ2").ToString%></span> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid>
The last column has the attribute "Wrap='false'". If I remove this attribute, the grid is displayed correctly but then the width is not correct.
How can i avoid the text to wrap and have a grid that displays correctly ?
Thank you!