The code that I'm managing used an older version of the Telerik assemblies. We recently upgraded the assemblies to the most recent version. Upon upgrading said files, I received complaints that the paging was no longer showing on a grid. This is weird, since "Allow Paging" is set to True in the markup. I did some playing around and noticed if I removed the GroupByExpressions from the grid, the paging works fine. The GroupByExpressions seems to work fine either way, but is preventing the paging from working. Could someone possibly shine some light on the situation? I've included the grid's code below. Note: Ignore the empty strings; I removed some of the values for security reasons.
<telerik:RadGrid ID="RgStatusGrid" runat="server" AllowPaging="True" GridLines="None" AllowSorting="true" PageSize="50" OnNeedDataSource="RgStatusGrid_NeedDataSource" OnItemDataBound="OnItemDataBound" OnSortCommand="RgStatusGrid_SortCommand"> <MasterTableView AutoGenerateColumns="false"> <GroupByExpressions> <telerik:GridGroupByExpression> <SelectRegions> <telerik:GridGroupByRegion RegionName="StateName" HeaderText="State" SortOrder="Ascending" /> <telerik:GridGroupByRegion RegionName="CityName" HeaderText="City" SortOrder="Ascending" /> </SelectRegions> <GroupByRegions> <telerik:GridGroupByRegion RegionName="StateName" HeaderText="State" SortOrder="Ascending" /> <telerik:GridGroupByRegion RegionName="CityName" HeaderText="City" SortOrder="Ascending" /> </GroupByRegions> </telerik:GridGroupByExpression> </GroupByExpressions> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn UniqueName="StateName" DataRegion="StateName" HeaderText="State" Visible="false" /> <telerik:GridBoundColumn UniqueName="CityName" DataRegion="CityName" HeaderText="City" Visible="false" /> <telerik:GridBoundColumn DataRegion="RegionName" HeaderText="Region" /> <telerik:GridBoundColumn DataRegion="Area" HeaderText="Area (acres)" DataFormatString="{0:F2}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" /> <telerik:GridBoundColumn DataRegion="" HeaderText="" DataFormatString="{0:MM/dd/yyyy}" /> </Columns> </MasterTableView></telerik:RadGrid>