|
<Columns>
<ej:Column Field="OrderID" CssClass="red" HeaderText="Order ID" IsPrimaryKey="True" TextAlign="Right" Width="75" />
<ej:Column Field="CustomerID" CssClass="blue" HeaderText="Customer ID" Width="90" />
<ej:Column Field="ShipCity" CssClass="yellow" HeaderText="Ship City" Width="90" />
<ej:Column Field="OrderDate" CssClass="green" HeaderText="Order Date" HeaderTemplateID="#dateTemplate"
TextAlign="Right" Width="100" Format="{0:MM/dd/yyyy}" />
<ej:Column Field="ShipCountry" CssClass="purple" HeaderText="Ship Country" Width="110" />
<ej:Column Field="EmployeeID" CssClass="orange" HeaderText="Emp ID" HeaderTemplateID="#employeeTemplate" TextAlign="Right" Width="90" />
</Columns>
. . .
<style type="text/css">
.e-grid .red.e-headercell{
background-color:red;
color:white
}
.e-grid .blue.e-headercell{
background-color:blue;
color:white
}
.e-grid .yellow.e-headercell{
background-color:yellow;
color:white
}
.e-grid .green.e-headercell{
background-color:green;
color:white
}
.e-grid .orange.e-headercell{
background-color:orange;
color:white
}
.e-grid .purple.e-headercell{
background-color:purple;
color:white
}
</style> |
|
|