Hi,
i have a gouping in radgrid and i don“t want the order he put, its possible to put the same order that came from DB?
this is my code
i have a gouping in radgrid and i don“t want the order he put, its possible to put the same order that came from DB?
this is my code
<telerik:RadGrid ID="gridAreasAndTopic" runat="server" EnableTheming="false" OnNeedDataSource="gridAreasAndTopics_NeedDataSource" Skin="WebBlue" AutoGenerateColumns="False" ShowFooter="true"> <MasterTableView AutoGenerateColumns="false" EditMode="InPlace" ShowFooter="True" TableLayout="Auto" GroupLoadMode="Client"> <GroupByExpressions> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField FieldName="areaName" FieldAlias="Area" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="areaName"></telerik:GridGroupByField> </GroupByFields> </telerik:GridGroupByExpression> </GroupByExpressions> <PagerStyle Mode="NextPrevAndNumeric" /> <Columns> <telerik:GridBoundColumn DataField="idArea" HeaderText="idArea" Visible="false" ItemStyle-Width="0%"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="idTopic" HeaderText="idTopic" Visible="false" ItemStyle-Width="0%"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="TopicName" Aggregate="Count" HeaderText="TopicName" ItemStyle-Width="100%"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn> <ItemTemplate> <asp:ImageButton ImageUrl="~/App_Themes/InsticcLayout/images/box/error.png" runat="server" ID="lnkDeleteAreaTopic" Text="Add" OnClick="lnkDeleteAreaTopic_Click" CausesValidation="false"> </asp:ImageButton> </ItemTemplate> </telerik:GridTemplateColumn></Columns><HeaderStyle HorizontalAlign="Center" /><ItemStyle HorizontalAlign="Left" /><FilterItemStyle HorizontalAlign="Center" /><GroupHeaderItemStyle HorizontalAlign="Left" /></MasterTableView> <ClientSettings AllowGroupExpandCollapse="True"></ClientSettings></telerik:RadGrid>