BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ej:Grid ID="FlatGrid" runat="server" AllowPaging="True" AllowScrolling="True" AllowFiltering="False" AllowReordering="False" AllowSorting="True" AllowSelection="True" Selectiontype="Multiple" >
<ClientSideEvents QueryCellInfo="queryCellInfo" />
<Columns>
<ej:Column Field="Id" HeaderText="Order ID" Width="90" IsPrimaryKey="True" Visible="false" />
<ej:Column Field="Name" HeaderText="Customer ID" Width="85"/>
<ej:Column Field="Freight" HeaderText="Employee ID" Format="{0:C}" Width="70"/>
</Columns>
</ej:Grid>
<script>
function queryCellInfo(args) {
if (args.column.field == "Freight") {
if (args.cell.textContent == null || args.cell.textContent == "") {
var val = "$0:0";
args.cell.textContent = val;
}
}
}
</script>
|