<ej:Grid ID="OrdersGrid" runat="server" AllowSorting="true" AllowMultiSorting="True" AllowPaging="True"> <columns> <ej:column field="OrderID" headertext="Order ID" isprimarykey="true" textalign="Right" width="90" /> <ej:column field="CustomerID" headertext="Customer ID" width="120" /> <ej:column field="EmployeeID" headertext="Employee ID" textalign="Right" width="115" /> <ej:column field="Freight" headertext="Freight" textalign="Right" width="90" format="{0:C}" /> <ej:column field="OrderDate" headertext="Order Date" width="110" textalign="Right" format="{0:MM/dd/yyyy}" /> <ej:column field="ShipCity" headertext="Ship City" width="100" /> </columns> |
<ej:Grid ID="FlatGrid" runat="server" AllowSorting="True" AllowPaging="True" AllowMultiSorting="true"> <SortedColumns > <ej:SortedColumn Field="OrderID" Direction="Descending" /> <ej:SortedColumn Field="CustomerID" Direction="Ascending" /> <ej:SortedColumn Field="EmployeeID" Direction="Ascending" /> <ej:SortedColumn Field="Freight" Direction="Descending" /> <ej:SortedColumn Field="OrderDate" Direction="Ascending" /> <ej:SortedColumn Field="ShipCity" Direction="Ascending" /> </SortedColumns> <Columns> <ej:Column Field="OrderID" HeaderText="Order ID" IsPrimaryKey="True" TextAlign="Right" Width="75" /> <ej:Column Field="CustomerID" HeaderText="Customer ID" Width="80" /> <ej:Column Field="EmployeeID" HeaderText="Employee ID" TextAlign="Right" Width="75" /> <ej:Column Field="Freight" HeaderText="Freight" TextAlign="Right" Width="75" Format="{0:C}" /> <ej:Column Field="OrderDate" HeaderText="Order Date" TextAlign="Right" Width="80" Format="{0:MM/dd/yyyy}" /> <ej:Column Field="ShipCity" HeaderText="Ship City" Width="110" /> </Columns> |
<ej:Grid ID="FlatGrid" runat="server" AllowSorting="True" AllowPaging="True"> <SortedColumns > <ej:SortedColumn Field="OrderID" Direction="Descending" /> <ej:SortedColumn Field="CustomerID" Direction="Ascending" /> <ej:SortedColumn Field="EmployeeID" Direction="Ascending" /> <ej:SortedColumn Field="Freight" Direction="Descending" /> <ej:SortedColumn Field="OrderDate" Direction="Ascending" /> <ej:SortedColumn Field="ShipCity" Direction="Ascending" /> </SortedColumns> -------------- ---- |