|
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
dataSource: window.gridData,
allowPaging: true,
allowSearching : true,
allowFiltering: true,
allowSorting: true,
allowSelection: true,
toolbarSettings : { showToolbar : true, toolbarItems : ["search"] },
columns: [
{ field:"Selection",type:"checkbox", width: 50 },
{ field: "OrderID", headerText: "Order ID", width: 75, isPrimaryKey: true , textAlign: ej.TextAlign.Right},
----
]
});
});
</script>
|
|
<div id="Grid"></div>
<script type="text/javascript">
$(function () {
var data = [{ "FaseCur": 6, "Id": "359d2243-b4ac-40ce-a132-9461ab4ae480" },
. . .
. .
];
for (var d = 0; d < data.length; d++) {
data[d].Verified = (d % 2 == 0);
}
$("#Grid").ejGrid(
{
"allowPaging": true,
"columns": [
{
"type": "checkbox", "width": 40,
"field": "Verified"
},
],
}
);
});
</script> |