<Columns> <ej:Column Field="OrderID" HeaderText="Order ID" IsPrimaryKey="True" TextAlign="Right" Width="90" /> <ej:Column Field="CustomerID" HeaderText="Customer ID" Width="100" /> <ej:Column Field="EmployeeID" HeaderText="Employee ID" TextAlign="Right" Width="100" /> <ej:Column Field="Freight" HeaderText="Freight" TextAlign="Right" Width="90" Format="{0:C}" /> <ej:Column Field="ShipCity" HeaderText="Ship City" Width="110" /> <ej:Column Field="ShipName" HeaderText="Ship Name" Width="90" /> <ej:Column Field="OrderDate" HeaderText="Order Date" TextAlign="Right" Width="100" Format="{0:MM/dd/yyyy}" /> <ej:Column Field="ShipCountry" HeaderText="Ship Country" Width="110" /> <ej:Column Field="ShipPostalCode" HeaderText="Ship Postal Code" TextAlign="Right" Width="110" /> <ej:Column Field="Verified" HeaderText="Verified" Width="100" /> </Columns> <ScrollSettings Height="300" Width="980" ></ScrollSettings> </ej:Grid> |
| <style> .e-grid.wrap .e-columnheader .e-headercelldiv { margin-bottom: 2px; margin-top: 0px; } </style> <ej:Grid runat='server' DataSourceID="UsersDS" CssClass="wrap" AllowTextWrap="true" AllowSelection="false" > <TextWrapSettings WrapMode="Header" /> <ClientSideEvents RecordClick="recordClick" /> <EditSettings AllowEditing="false"></EditSettings> <Columns> <ej:Column Field="ClientName" HeaderText |