Actions
Empty action
<object-table ...>
<empty-action icon="fa-angle-right" on-press="$:noResultsAction()" validate="false" />
...
</object-table>function noResultsAction(object){
// Do something with the object
console.log(JSON.stringify(object));
}Row actions
<object-table ...>
<action icon="fa-angle-right" on-press="$:rowAction($selection)" validate="false" />
...
</object-table>Cell actions
Combining row and cell actions
Column actions
Common patterns
Combo menu
Combo menu with original filter capability
Pin frozen column
object-table actions
object-table actions
Example: Select all items on a page
Example: One-click CSV export
Last updated