The search system allows to search the displayed list items. In contrast filters, search does not impose a limit on the list, it only selects objects using flags.

By default the search is enabled. The inclusion of search answers operation Search. To disable the search button you need the page loads to set this operation in false:

webObjectListView1.Operations.Search = false;

Enabling this option adds the Toolbar WOLV search button

Clicking on this button, an additional panel.

If operation FullViewSearch == false, the panel will appear simple search:

This type of search offers the user to select a specific column which is searched.

search the entire presentation

If operation FullViewSearch == true, you will see a search bar throughout the performance:

From a simple search it differs in the absence of selecting a data column, as the search is performed on all columns at once.

Rules

  1. If the field is a string, it is searched for occurrences of a substring in a string.
  2. If the field has any other type, it is searched for an exact match with the entered string.

Special Characters

The input string is a valid use of the following symbols:

  1. * - any number of any characters (including 0).
  2. ? - any single character.
  3. [abcdef] or [a-f] any of the characters.
  4. [^abcdef] or [^a-f] - any character except those specified.