Hi,
I have a grid with 4 visible columns. The problem I'm having is that the header for the last column ignores the font-size property that I've set (12px). All the other headers displayed correctly.
Any reason why?
Thanks.
I have a grid with 4 visible columns. The problem I'm having is that the header for the last column ignores the font-size property that I've set (12px). All the other headers displayed correctly.
Any reason why?
Thanks.
<rad:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="True" |
DataSourceID="dsSearch" ShowGroupPanel="True" |
AllowCustomPaging="True" AutoGenerateColumns="False" |
AllowMultiRowSelection="True"> |
<HeaderStyle Font-Names="Verdana,Tahoma,Arial" Font-Size="12px" /> |
<ClientSettings AllowDragToGroup="True"> |
<Selecting AllowRowSelect="True" /> |
</ClientSettings> |
<MasterTableView DataSourceID="dsSearch"> |
<RowIndicatorColumn Visible="False"> |
<HeaderStyle Width="20px" /> |
</RowIndicatorColumn> |
<ExpandCollapseColumn Resizable="False" Visible="False"> |
<HeaderStyle Width="20px" /> |
</ExpandCollapseColumn> |
<Columns> |
<rad:GridBoundColumn DataField="ID" HeaderText="ID" UniqueName="colID" |
Visible="False"> |
</rad:GridBoundColumn> |
<rad:GridTemplateColumn UniqueName="colSelect"> |
<ItemTemplate> |
<asp:CheckBox ID="chkSelect" runat="server" /> |
</ItemTemplate> |
</rad:GridTemplateColumn> |
<rad:GridTemplateColumn HeaderText="Keywords" UniqueName="colKeywords"> |
<ItemTemplate> |
<asp:Label ID="Label12" runat="server" Text="Label"></asp:Label> |
</ItemTemplate> |
<ItemStyle Font-Names="Verdana,Tahoma,Arial" Font-Size="12px" /> |
</rad:GridTemplateColumn> |
<rad:GridHyperLinkColumn DataNavigateUrlField="ID" |
DataNavigateUrlFormatString="~/bookinfo.aspx?BookID={0}" |
DataTextField="Title" UniqueName="colTitle" HeaderText="Title"> |
<ItemStyle Font-Names="Verdana,Tahoma,Arial" Font-Size="12px" /> |
</rad:GridHyperLinkColumn> |
<rad:GridBoundColumn DataField="CategoryTitle" HeaderText="Dewey Category" |
UniqueName="colCategoryTitle"> |
<HeaderStyle Font-Names="Verdana,Tahoma,Arial" Font-Size="12px" /> |
<ItemStyle Font-Names="Verdana,Tahoma,Arial" Font-Size="12px" /> |
</rad:GridBoundColumn> |
</Columns> |
</MasterTableView> |
</rad:RadGrid> |