Search content
The "Search" field allows you to search content, for instance, in the "Bookmark Tree" widget, "Data Explorer" and "Context values".
These are the supported types of search (all case insensitive), that will resolve in the following specific order:
- Regular Expression search: when starting with a
/
, the remaining part will be considered a JS Regular Expression. Example:/^l[a-z]+de$
would match any elements whose caption starts with anl
, ends withde
and contains alphabetical characters in between. - Glob pattern search: when containing a
*
or a?
, the search will be considered a glob pattern. Example:a*z
would match any elements whose caption contains ana
, az
and any characters in between. - Regular search: otherwise, the search will be considered as a chunk of text to match against. Example:
abc
would match any elements whose caption containsabc
.