description:"Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name:"filter",
type:"boolean",
default:"false",
description:"When specified, displays a filter input at header."
},
{
name:"filterPlaceholder",
type:"string",
default:"null",
description:"Placeholder text to show when filter input is empty."
},
{
name:"filterLocale",
type:"string",
default:"undefined",
description:"Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name:"filterMatchMode",
type:"string",
default:"contains",
description:'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"'
},
{
name:"filterFields",
type:"array",
default:"null",
description:"Fields used when filtering the options, defaults to optionLabel."
},
{
name:"emptyFilterMessage",
type:"string",
default:"No results found",
description:"Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration."
},
{
name:"emptyMessage",
type:"string",
default:"No results found",
description:"Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."
}
];
constListboxEvents=[
{
name:"change",
description:"Callback to invoke on value change.",
arguments:[
{
name:"event.originalEvent",
type:"object",
description:"Browser event"
},
{
name:"event.value",
type:"object",
description:"Selected option value"
}
]
},
{
name:"filter",
description:"Callback to invoke on filter input.",