Hi,
I'm facing issue in grouping with custom paging set to true, I'm not getting any group split message even if the grouped items split into multiple pages. Here are my grid settings;
Also I'm doing advanced databinding mechanism to bind the values to grid.
Please help me to solve the problem,
Thanks
Anoop
I'm facing issue in grouping with custom paging set to true, I'm not getting any group split message even if the grouped items split into multiple pages. Here are my grid settings;
<telerik:RadGrid ID="Grid1" AllowPaging="true" AllowCustomPaging="true"
GroupingEnabled="true" ShowGroupPanel="false" ShowStatusBar="false" AutoGenerateColumns="false" VirtualItemCount="100000"
runat="server" OnItemDataBound="Grid1_ItemDataBound"
OnNeedDataSource="Grid1_NeedDataSource">
<PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" PagerTextFormat="Change page: {4} <strong><b>{5}</b> Items In <b>{1}</b> Pages </strong>"
PageSizeLabelText="Items Per Page : " />
<GroupingSettings CollapseTooltip="Collapse client items" ExpandTooltip="Expand client items" RetainGroupFootersVisibility="true" />
<MasterTableView EnableColumnsViewState="false" EnableViewState="true" TableLayout="Auto" ShowGroupFooter="true"
GroupLoadMode="Client" >
<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField HeaderText="Client" FieldName="ClientNameWithID" SortOrder="Ascending" />
</SelectFields>
<GroupByFields>
<telerik:GridGroupByField HeaderText="Client" FieldName="ClientNameWithID" SortOrder="Ascending" />
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
</MasterTableView>
<ClientSettings AllowGroupExpandCollapse="true">
<Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="false" />
<ClientEvents OnGridCreated="GridCreated" />
<Resizing AllowRowResize="False" EnableRealTimeResize="True" ResizeGridOnColumnResize="False"
AllowColumnResize="False"></Resizing>
</ClientSettings>
</telerik:RadGrid>
Also I'm doing advanced databinding mechanism to bind the values to grid.
Please help me to solve the problem,
Thanks
Anoop