Can someone just point me in the right direction with this? I can't seem to be able to change my column widths:
| <telerik:RadGrid ID="RadGridDentistsNotes" runat="server" AutoGenerateColumns="False" TableLayout="Fixed"> |
| <MasterTableView DataSourceID="odsDentistsNotes" DataKeyNames="NoteID"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="NoteDate" HeaderText="Date" HeaderStyle-Width="50px" /> |
| <telerik:GridTemplateColumn HeaderText="Note"> |
| <ItemTemplate> |
| <%#BLL.Functions.SummaryStr(Eval("Note"), 40)%> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn DataField="FK_UserFullName" HeaderText="User" HeaderStyle-Width="50px" /> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings EnableRowHoverStyle="true"> |
| <Selecting AllowRowSelect="true" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
Actually I should point out that the widths are set when the grid contains no data, but when I rebind the grid and load data, the widths go back to standard.