BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[script] $(function () { // the datasource "window.gridData" is referred from jsondata.min.js var data = ej.DataManager(window.gridData).executeLocal(ej.Query().take(50)); $("#mobgridscrolling").ejmGrid({ dataSource: data, allowPaging: false, allowScrolling: true, scrollSettings: { enableColumnScrolling: true, enableRowScrolling: true, height: 220 }, columns: [ { field: "OrderID", headerText: "Order ID", width: 100 }, { field: "CustomerID", headerText: "Customer ID", width: 140 }, { field: "Freight", headerText: "Freight", width: 100 }, { field: "EmployeeID", headerText: "EmployeeID", width: 150 }, { field: "ShipCity", headerText: "ShipCity", width: 150 } ], }); }); |