Hello,
I have a problem placing more than one RadGird in on a page.
Here is the scenario:
I am using the RadGrid to select data from my database. Therefore I created an UserControl with a RadGrid in it. The RadGrid is shown through a RadTooltip in Modal mode. Multiple data can be shown by the Grid because all columns are created from code behind. More than one of these UserControls on a page are possible and I use them like this anyway.
Here is the RadGrid definition:
So here is the problem:
If I place more than one of these UserControl on a page everything works fine in Internet Explorer. In Firefox I get a Javascript error.
Firebug shows the following errors:
this.get_element().tBodies[0] is undefined
}var c=this.get_element().tBodies[0].rows;\nTelerik....e:59462f1 (Zeile 10579)
If I remove the Scrollong tag from the ClientSettings the error does not appear.
I would like to use scrolling so are there any suggestions what to do?
Best regards
Ferdinand
I have a problem placing more than one RadGird in on a page.
Here is the scenario:
I am using the RadGrid to select data from my database. Therefore I created an UserControl with a RadGrid in it. The RadGrid is shown through a RadTooltip in Modal mode. Multiple data can be shown by the Grid because all columns are created from code behind. More than one of these UserControls on a page are possible and I use them like this anyway.
Here is the RadGrid definition:
<telerik:RadGrid ID="rgPickListData" runat="server" MasterTableView-NoMasterRecordsText="Keine Daten zum Anzeigen" |
BorderStyle="None" AutoGenerateColumns="false" EnableViewState="true" AllowSorting="True" |
Height="330" AllowPaging="true" PageSize="40" Width="97%" AllowMultiRowSelection="true"> |
<PagerStyle Visible="false" /> |
<MasterTableView OverrideDataSourceControlSorting="true" DataKeyNames="E_ID" /> |
<ClientSettings EnableRowHoverStyle="true"> |
<Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" /> |
<Selecting AllowRowSelect="True" /> |
</ClientSettings> |
<SortingSettings SortToolTip="Zum Sortieren hier klicken" EnableSkinSortStyles="true" /> |
</telerik:RadGrid> |
So here is the problem:
If I place more than one of these UserControl on a page everything works fine in Internet Explorer. In Firefox I get a Javascript error.
Firebug shows the following errors:
this.get_element().tBodies[0] is undefined
If I remove the Scrollong tag from the ClientSettings the error does not appear.
I would like to use scrolling so are there any suggestions what to do?
Best regards
Ferdinand