I'm having a grid issue. I'm not sure what started to cause it. I know it wasn't behaving this way until recently it was introduced somehow.
I'm wondering if anyone else has seen symptoms like this.
So,
I have this simple grid.
<telerik:RadGrid runat="server" ID="grider" Skin="Office2007" AutoGenerateColumns="false" AllowMultiRowSelection="true" Width="300" height="100" > |
<MasterTableView runat="server" ClientDataKeyNames="DataPointId,IsEnabled, HasMultiple" ShowHeader="false" TableLayout="Fixed"> |
<NoRecordsTemplate> |
<asp:Localize ID="Localize3" runat="server" Text="<%$ Resources:Resource, NO_AVAILABLE_ALERTS %>" /> </NoRecordsTemplate> |
<Columns> |
<telerik:GridBoundColumn UniqueName="Display" DataField="Display" HeaderText="<%$ Resources:Resource, DISPLAY %>" /> |
</Columns> |
</MasterTableView> |
<ClientSettings AllowKeyboardNavigation="True" EnableRowHoverStyle="true"> |
<Scrolling UseStaticHeaders="true" AllowScroll="true" /> |
<Selecting AllowRowSelect="true" /> |
<ClientEvents OnRowDataBound="RowDataBound" OnRowCreated="RowCreated" OnRowSelected="GridAddRowSelected" OnRowSelecting="RowSelecting" OnRowDeselected="GridAddRowDeselected"/> |
</ClientSettings> |
</telerik:RadGrid> |
It's sitting inside a div structure a few layers deep.
I use it to change the UI based on a page mode.
If I hide the parent div in javascript like so $get('divParent').style.display = 'none';
in order to display other controls
the grid doesn't hide. it just floats above the other controls that are now visible
this is only in IE. might anyone know why this is happening?
regards