type

defines the display mode of the filtering fields

string type;

Example

webix.ui({
  view: "query",
  width: 340,
  type: "list",  
  ...
});


Default value:

"list"
Details

Possible options are "list" and "bar".

Back to top