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:
In text filter control you may use it in the following way:
Please check the relevant control documentation page for data-skip usage examples.
Last updated