I have a grid set up with a fixed width, and I have the ResizeGridOnColumnResize property set to false. This works OK when I'm not running in IE8 compatibility mode, but as soon as I flip this on the grid gets wider if I resize a column even though I want it to remain fixed.
Here is my grid definition:
I want the user to be able to change the width of each column, but I also need the grid to render correctly in IE8 compatibility mode. Any ideas?
Here is my grid definition:
<
telerik:RadGrid
ID
=
"radGrid"
runat
=
"server"
ShowHeader
=
"true"
Width
=
"760"
GridLines
=
"Both"
EnableViewState
=
"true"
>
<
ClientSettings
>
<
Resizing
AllowColumnResize
=
"true"
AllowRowResize
=
"false"
ResizeGridOnColumnResize
=
"false"
EnableRealTimeResize
=
"true"
/>
<
ClientEvents
OnColumnResized
=
"ColumnResized"
/>
</
ClientSettings
>
<
HeaderStyle
HorizontalAlign
=
"center"
/>
<
ItemStyle
HorizontalAlign
=
"center"
/>
</
telerik:RadGrid
>
I want the user to be able to change the width of each column, but I also need the grid to render correctly in IE8 compatibility mode. Any ideas?