π
π
π
π
DataGrid Documentation
Searchβ¦
π
π
π
π
DataGrid Documentation
Getting Started
Buy DataGrid on CodeCanyon
Controls
Text Filter
Sort DropDown Control
Sort Button Control
Checkbox Filter
Radio Button Filter
Select Filter
Button Filter
Pagination
Page Size Control
Label Control
Multiple version of the same control (data-id attribute)
Languages Support
Special Classes
Deep Links
Storage
Multiple DataGrids on Page
How To
How To Sort Table in JavaScript
HTML Table with Sortable Headers
How to Filter HTML Table By Multiple Columns
Double Sort (Multiple Column Ordering)
Powered By
GitBook
Multiple DataGrids on Page
It is possible to have multiple DataGrid containers on one page:
1
datagrid
(
'.path1'
);
2
datagrid
(
'.path2'
);
Copied!
Each DataGrid initialization may have its own settings:
1
// container #1
2
datagrid
(
'.path1'
,
{
3
currentPage
:
0
,
4
pageSize
:
12
,
5
pagesRange
:
10
6
});
7
β
8
// container #2
9
datagrid
(
'.path2'
,
{
10
currentPage
:
0
,
11
pageSize
:
3
,
12
pagesRange
:
10
13
});
Copied!
Multiple DataGrids don't support deep linking and storage.
β
Previous
Storage
Next - How To
How To Sort Table in JavaScript
Last modified
1yr ago
Copy link