edit-typeahead
Overview
Basic Example
<object-table ... >
<column heading="Items">
<edit-typeahead
empty-message="No results found"
on-search="$:onSearch($object, searchValue)" />
</column>
</object-table>function onSearch(object, searchValue) {
return [
{ label: "Item 1", key: "1" },
{ label: "Item 2", key: "2" },
{ label: "Item 3", key: "3" }
];
}
Standard Attributes
on-search
JS/TS Eventson-searchField
Required?
Description

Field
Required?
Description
Advanced Attributes
clear-icon
clear-iconempty-message
empty-messageshow-if and hide-if
show-ifhide-ifshow-if and hide-ifLast updated