Does anyone know which style I need to adjust to fix this overlapping or cut off?
I've increased the width of the grid to more then enough room..
See picture.
The <telerik:GridClientSelectColumn ItemStyle-Width="10px" ItemStyle-CssClass="checkboxadjust" HeaderText="Select All" />
Column seems to get cut off from the ItemTemplate
<telerik:RadGrid ID="gvClaimsToPickToAssociate" |
AutoGenerateColumns="false" |
CssClass="AutoHeight" |
AllowSorting="true" |
AllowPaging="true" |
PageSize="25" |
GridLines="Both" |
ShowHeader="true" |
ClientSettings-Selecting-AllowRowSelect="true" |
AllowFilteringByColumn="false" |
AllowMultiRowSelection="true" |
SkinID="None" |
ShowFooter="false" |
ShowStatusBar="true" |
runat="server" |
Skin="Windows7" |
Width="875px"> |
<SelectedItemStyle /> |
<MasterTableView TableLayout="Fixed" DataKeyNames="ADMClaimID" > |
<Columns> |
<telerik:GridClientSelectColumn ItemStyle-Width="10px" ItemStyle-CssClass="checkboxadjust" HeaderText="Select All" /> |
</Columns> |
<ItemTemplate> |
.... |
</ItemTemplate> |
</MasterTableView> |
<ClientSettings AllowDragToGroup="true"> |
<Scrolling AllowScroll="true" UseStaticHeaders="true" /> |
</ClientSettings> |
</telerik:RadGrid> |