BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
$(function () {
$("#Grid").ejGrid({
// the datasource "window.gridData" is referred from jsondata.min.js
-----------------------
allowPaging: true,
editSettings: { allowEditing: true, allowAdding: true, allowDeleting: true },
------------------------
columns: [
---------------------
{ field: "Freight", headerText: 'Freight', textAlign: ej.TextAlign.Right, validationRules: { number: true, range: [-2, 2] }, width: 80 },
-----------------------
]
});
});
|