I have this same issue where I have a popup which contains a table. one side is 20% wide, other is 80%. I have a grid in the 20% wide side (left side) and in IE and Chrome, it is fine, but in firefox, the .rgDataDiv class is injecting a height of 10px. No ajax. Any ideas?
<
table
style
=
"width: 100%; height: 88vh; border-spacing: 0; border-collapse: collapse; border: 0"
>
<
tr
>
<
td
width
=
"20%"
>
<
RadGrid
ID
=
"PayrollProcessSummaryGrid"
runat
=
"server"
GridLines
=
"None"
Height
=
"100%"
AutoAssignModifyProperties
=
"true"
>
<
ClientSettings
AllowColumnsReorder
=
"false"
ReorderColumnsOnClient
=
"false"
>
<
Scrolling
AllowScroll
=
"true"
UseStaticHeaders
=
"true"
/>
<
Selecting
AllowRowSelect
=
"true"
/>
<
ClientEvents
OnRowClick
=
"onRowClick"
OnGridCreated
=
"onGridCreated"
OnCommand
=
"onCommand"
/>
</
ClientSettings
>
<
MasterTableView
AutoGenerateColumns
=
"false"
CommandItemDisplay
=
"Top"
AllowSorting
=
"false"
>
<
CommandItemTemplate
></
CommandItemTemplate
>
<
Columns
>
<
wasp:GridDateTimeControl
DataField
=
"field1"
LabelText
=
"*field1*"
SortExpression
=
"field1"
UniqueName
=
"field1"
/>
<
wasp:GridDateTimeControl
DataField
=
"field2"
LabelText
=
"*field2*"
SortExpression
=
"field2"
UniqueName
=
"field2"
/>
</
Columns
>
</
MasterTableView
>
<
HeaderContextMenu
EnableAutoScroll
=
"true"
/>
</
RadGrid
>
</
td
>
<
td
width
=
"80%"
>
<
telerik:RadSplitter
ID
=
"RadSplitter"
runat
=
"server"
Orientation
=
"Horizontal"
Height
=
"100%"
Width
=
"100%"
VisibleDuringInit
=
"false"
OnClientLoad
=
"onClientLoad"
BorderSize
=
"0"
>
<
telerik:RadPane
ID
=
"RadPane"
runat
=
"server"
Width
=
"100%"
/>
</
telerik:RadSplitter
>
</
td
>
</
tr
>
</
table
>