Hello guys,
I've used a dozen RadGrids on various pages, and for some reason I've got one RadGrid used in one user control, that will not respond to any activity on the pager.
The spinner, in the left side of the pager, spins when any pager controls are clicked, but the data does not update in the grid.
Can anyone please provide a few ideas I can check?
I've used a dozen RadGrids on various pages, and for some reason I've got one RadGrid used in one user control, that will not respond to any activity on the pager.
The spinner, in the left side of the pager, spins when any pager controls are clicked, but the data does not update in the grid.
Can anyone please provide a few ideas I can check?
<telerik:RadGrid ID="_newEntityCreativeGrid" runat="server" PageSize="10" AllowSorting="true" ShowHeader="true" ShowFooter="false" ShowStatusBar="true" AllowPaging="true" EnableViewState="true"> <MasterTableView AutoGenerateColumns="false"> <Columns> <telerik:GridBoundColumn DataField="CreativeID" DataType="System.Int32" HeaderText="Creative Id"
Visible="false" /> <telerik:GridBoundColumn DataField="CreativeType" DataType="System.Int32" HeaderText="Creative Type" Visible="false" /> <telerik:GridBoundColumn DataField="BrandID" DataType="System.Int32" HeaderText="Brand Id" Visible="false" /> <telerik:GridButtonColumn DataTextField="BrandName" UniqueName="BrandName" DataType="System.String" HeaderText="Brand Name" CommandName="Brand" /> <telerik:GridBoundColumn DataField="ParentID" DataType="System.Int32" HeaderText="Parent Id" Visible="false" /> <telerik:GridButtonColumn DataTextField="ParentName" UniqueName="ParentName" DataType="System.String" HeaderText="Parent Name" CommandName="Parent" /> <telerik:GridBoundColumn DataField="AdvertiserID" DataType="System.Int32" HeaderText="Advertiser Id" Visible="false" /> <telerik:GridButtonColumn DataTextField="AdvertiserName" UniqueName="AdvertiserName" DataType="System.String" HeaderText="Advertiser" CommandName="Advertiser" /> <telerik:GridBoundColumn DataField="ProductID" DataType="System.Int32" HeaderText="Product Id" Visible="false" /> <telerik:GridButtonColumn DataTextField="ProductName" UniqueName="ProductName" DataType="System.String" HeaderText="Product Name" CommandName="Product" /> <telerik:GridBoundColumn DataField="CategoryID" DataType="System.Int32" HeaderText="Category Id" Visible="false" /> <telerik:GridBoundColumn DataField="CategoryName" DataType="System.String" HeaderText="Category Name" /> <telerik:GridBoundColumn DataField="PropertyID" DataType="System.Int32" HeaderText="Property Id" Visible="false" /> <telerik:GridBoundColumn DataField="PropertyName" UniqueName="PropertyName" DataType="System.String" HeaderText="Property Name" Visible="false" /> <telerik:GridBoundColumn DataField="FirstAppearedDate" HeaderText="First Appeared Date" Visible="false" DataType="System.DateTime" /> <telerik:GridBoundColumn DataField="FirstAppeared" UniqueName="FirstAppeared" DataType="System.String" HeaderText="First Appeared" /> </Columns> </MasterTableView> <ClientSettings> <Selecting AllowRowSelect="false"></Selecting> </ClientSettings> </telerik:RadGrid>