I've been trying all day to get grouping to work in my Grid with OData. Are there any known issues? Shouldn't it work?
Here's some sample code that I know is not working:
Here's some sample code that I know is not working:
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy" runat="server"></telerik:RadAjaxManagerProxy><telerik:RadScriptManager runat="server" ID="RadScriptManager1"> </telerik:RadScriptManager><telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGridTicketDetails"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGridTicketDetails"/> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager><telerik:RadGrid ID="RadGridTicketDetails" runat="server" ActiveItemStyle-BackColor="Green" HeaderStyle-BackColor="#00597A" EnableEmbeddedSkins="true" Skin="Metro" ShowGroupPanel="True" GroupingEnabled="true"> <MasterTableView TableLayout="Fixed" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" GroupsDefaultExpanded="true" PageSize="10" GroupLoadMode="Client" AutoGenerateColumns="false"> <PagerStyle CssClass="RadGridPager" Mode="NumericPages"></PagerStyle> <HeaderStyle CssClass="RadGridHeader"></HeaderStyle> <FooterStyle CssClass="FooterStyle"></FooterStyle> <Columns> <telerik:GridBoundColumn DataField="ProductID" HeaderText="ProductID" DataType="System.Int32"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ProductName" HeaderText="ProductName" DataType="System.String"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="UnitPrice" HeaderText="UnitPrice" DataType="System.Decimal" DataFormatString="{0:C}"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ReorderLevel" HeaderText="ReorderLevel" DataType="System.Int32"> </telerik:GridBoundColumn> <telerik:GridCheckBoxColumn DataField="Discontinued" HeaderText="Discontinued" DataType="System.Boolean"> </telerik:GridCheckBoxColumn> </Columns> </MasterTableView> <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="false" AllowDragToGroup="True" AllowGroupExpandCollapse="True" AllowColumnsReorder="true"> <DataBinding Location="http://services.odata.org/Northwind/Northwind.svc" ResponseType="JSONP"> <DataService TableName="Products" Type="OData"/> </DataBinding> <Selecting AllowRowSelect="True"/> </ClientSettings> <GroupingSettings ShowUnGroupButton="true"/></telerik:RadGrid>