Hi, I have the following GridTemplateColumn. I want to set the width of the CompanyName column to 150px. I have all the settings I thought I needed but it will won't wrap text?
<telerik:GridTemplateColumn HeaderStyle-Width="150px" ItemStyle-Width="150px" ItemStyle-Wrap="true" >
<ItemTemplate>
<table>
<tr>
<td style="border:none !important;"><asp:CheckBox ID="CheckBox1" runat="server" /></td>
<td style="border:none !important;"><%# Eval("CompanyName") %></td>
</tr>
</table>
</ItemTemplate>
</telerik:GridTemplateColumn>
Thanks, Dave
<telerik:GridTemplateColumn HeaderStyle-Width="150px" ItemStyle-Width="150px" ItemStyle-Wrap="true" >
<ItemTemplate>
<table>
<tr>
<td style="border:none !important;"><asp:CheckBox ID="CheckBox1" runat="server" /></td>
<td style="border:none !important;"><%# Eval("CompanyName") %></td>
</tr>
</table>
</ItemTemplate>
</telerik:GridTemplateColumn>
Thanks, Dave