|
[GridFeatures.aspx]
<ej:Grid ID="FlatGrid" runat="server" AllowSorting="True" AllowPaging="True" IsResponsive="true">
<ClientSideEvents QueryCellInfo="onGridQueryCellInfoEvent" />
<Columns>
<ej:Column Field="EmployeeID" HeaderText="Employee ID" TextAlign="Right" Width="75" Priority="4" />
---
</Columns>
</ej:Grid>
<script type="text/javascript">
function onGridQueryCellInfoEvent(args) {
if (args.column.field == "EmployeeID" && args.rowData.EmployeeID == 1) {
$(args.cell).addClass('e-updatedtd e-icon e-gupdatenotify');
}
}
</script>
|
|
<ej:Grid ID="FlatGrid" runat="server" AllowSorting="True" AllowPaging="True" IsResponsive="true">
<ClientSideEvents QueryCellInfo="onGridQueryCellInfoEvent" />
. . . . .
</ej:Grid>
</div>
<script type="text/javascript">
function onGridQueryCellInfoEvent(args) {
if (args.column.field == "EmployeeID") {
$(args.cell).css("vertical-align","top")
$(args.cell).addClass('e-updatedtd e-icon e-gupdatenotify');
}
}
</script> |
|
|