UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

58 lines (56 loc) 2.31 kB
@{ ViewBag.Title = "jQWidgets DataTable"; } @section scripts { <script type="text/javascript"> $(document).ready(function () { // prepare the data var source = { dataType: "json", dataFields: [ { name: 'EmployeeID', type: 'number' }, { name: 'ManagerID', type: 'number' }, { name: 'FirstName', type: 'string' }, { name: 'LastName', type: 'string' }, { name: 'Country', type: 'string' }, { name: 'City', type: 'string' }, { name: 'Address', type: 'string' }, { name: 'Title', type: 'string' }, { name: 'HireDate', type: 'date' }, { name: 'BirthDate', type: 'date' } ], id: 'EmployeeID', url: '/Employee/GetCurrentEmployees' }; var dataAdapter = new $.jqx.dataAdapter(source, { downloadComplete: function (data) { source.totalrecords = data.TotalRows; } }); // create DataTable $("#dataTable").jqxDataTable( { width: 850, source: dataAdapter, theme: 'arctic', pageSize: 5, sortable: true, filterable: true, pageable: true, serverProcessing: true, columns: [ { text: 'FirstName', dataField: 'FirstName', width: 200 }, { text: 'LastName', dataField: 'LastName', width: 200 }, { text: 'Title', dataField: 'Title', width: 160 }, { text: 'Birth Date', dataField: 'BirthDate', cellsFormat: 'd', width: 120 }, { text: 'Hire Date', dataField: 'HireDate', cellsFormat: 'd', width: 120 }, { text: 'Address', dataField: 'Address', width: 250 }, { text: 'City', dataField: 'City', width: 120 }, { text: 'Country', dataField: 'Country' } ] }); }); </script> } <div id="dataTable"></div>