I have a pretty simple rad grid which is in a modal window. In Firefox, the height of the row (vertical-padding) appears to be greater than it does in Internet Explorer. I took a screenshot of both, and sure enough the row heights are larger in Firefox. This causes scrollbars to show up on the modal window. Any help is appreciated.
The grid
The modal window
The grid
<div style='padding: 10px;'> |
<Telerik:RadGrid RegisterWithScriptManager="true" ID="StudentCheckListRadGrid" |
AutoGenerateColumns="false" runat="server" AllowSorting="true" |
AllowPaging="false" ShowHeader="false" PageSize="10" Width="100%"> |
<MasterTableView AllowMultiColumnSorting="true" AutoGenerateColumns="false"> |
<Columns> |
<Telerik:GridBoundColumn DataField="TaskHeaderCheckList" HeaderText="FirstNameCheckList"></Telerik:GridBoundColumn> |
</Columns> |
</MasterTableView> |
</telerik:RadGrid> |
</div> |
The modal window
<telerik:RadWindow ID="StudentCheckListWindow" runat="server" Modal="True" AutoSize="False" Behaviors="Close" |
Height="600" Width="800" ReloadOnShow="true"> |
<ContentTemplate> |
<ctrl1:ctrlNameList ID="ctrlNameList" runat="server" /> |
</ContentTemplate> |
</telerik:RadWindow> |