📔
📔
📔
📔
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
Languages Support
By default, all controls have a
data-skip
attribute that defines what characters should be skipped during sorting, filtering, etc.
Initially, this attribute contains regex
[^a-zA-Z0-9]+
, meaning that control should skip all characters except English letters and numbers.
In other languages, control should have different regex with the letters of the given alphabet.
For example, for French, it could be:
1
[^a-zà âçéèêëîïôûùüÿñæœ0-9]+
Copied!
In text filter control you may use it in the following way:
1
<
input
2
type
=
"
text
"
3
placeholder
=
"
Filter by title
"
4
data-grid-control
=
"
text-filter
"
5
data-path
=
"
.title
"
6
data-skip
=
"
[^a-zà âçéèêëîïôûùüÿñæœ0-9]+
"
7
/>
Copied!
Please check the relevant control documentation page for
data-skip
usage examples.
Previous
Multiple version of the same control (data-id attribute)
Next
Special Classes
Last modified
1yr ago
Copy link