Hello,
I have created a DNN module that has a Radgrid inside the dotnetnuke module. When accessing the module I am noticing that I am getting JavaScript errors on the page. The error is:
I am not sure why this is hapening as this is a pretty basic RadGrid. Any help or suggestions would be greatly apperciated.
I have created a DNN module that has a Radgrid inside the dotnetnuke module. When accessing the module I am noticing that I am getting JavaScript errors on the page. The error is:
_2e2 is null
? in ScriptResource.axd?d=0wQxqRcJ1CXPf2LGdlit_6M6aNYNbDGF6evk1hpRXbSo9OUUX0qqpy8D9ziLGtzeZSRxUNZNyuw1&t=633537003434687500@4343()ScriptRe...434687500 (line 4367)
Sys$_Application$dispose()ScriptRe...879218750 (line 3672)
Sys$_Application$_unloadHandler(Object rawEvent=Event unload target=document offsetX=0)ScriptRe...879218750 (line 3806)
? in ScriptResource.axd?d=VWTwn4M3R27tRL6nECM12hHDRYk9Qg42oALR-JBXSvSBfqVABlPB2F0d1IBqRIdu0&t=633531023879218750@49()ScriptRe...879218750 (line 50)
? in ScriptResource.axd?d=VWTwn4M3R27tRL6nECM12hHDRYk9Qg42oALR-JBXSvSBfqVABlPB2F0d1IBqRIdu0&t=633531023879218750@3033()ScriptRe...879218750 (line 3034)
_2e2.remove_initializeRequest(this._initializeRequestHandler);
Line 4367
The grid looks like:
Line 4367The grid looks like:
Line 4367
The grid looks like:
| <telerik:RadGrid ID="RadUserGroups" runat="server" Width="200px" |
| DataSourceID="GetUserGroups" AllowPaging="True" GridLines="None" AutoGenerateColumns="False" |
| Skin="WebBlue" AllowFilteringByColumn="True" oninit="RadUserGroups_Init" |
| onitemcommand="RadUserGroups_ItemCommand" onitemdatabound="RadUserGroups_ItemDataBound" |
| > |
| <PagerStyle Mode="NumericPages" /> |
| <MasterTableView PageSize="5" TableLayout="Auto" > |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Id" HeaderText="Id" |
| HeaderStyle-HorizontalAlign="Center" Visible="false" |
| ItemStyle-HorizontalAlign="Center" UniqueName="Id" > |
| <HeaderStyle HorizontalAlign="Center"></HeaderStyle> |
| <ItemStyle HorizontalAlign="Center"></ItemStyle> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Name" HeaderText="User Groups" |
| HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center"> |
| <HeaderStyle HorizontalAlign="Center"></HeaderStyle> |
| <ItemStyle HorizontalAlign="Center"></ItemStyle> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings EnablePostBackOnRowClick="true" > |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
I am not sure why this is hapening as this is a pretty basic RadGrid. Any help or suggestions would be greatly apperciated.
