BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<script type="text/x-jsrender" id="columnTemplate">
<span class="label label-warning></span>
</script>
<div id="Grid"></div>
<script type="text/javascript">
$(function () {
// the datasource "window.gridData" is referred from jsondata.min.js
var data = ej.DataManager(window.gridData).executeLocal(ej.Query().take(50));
$("#Grid").ejGrid({
dataSource: data,
allowPaging: true,
allowSorting: true,
isResponsive: true,
columns: [
{ headerText: "RowIndex", template: true, templateID: "#columnTemplate", textAlign: "center", width: 110 },
. . .
],
templateRefresh:"refresh",
});
});
function refresh(args) {
Index = (this.model.pageSettings.pageSize * (this.model.pageSettings.currentPage-1)) + args.rowIndex + 1;
$(args.cell).find("span").text(Index);
}
</script> |