action
Overview
Basic Example
<object-table ...>
<column ...>
<edit-typeahead ...>
<action label="Create User" icon="fa-user" on-press="$:createUser($object, searchValue)" />
</edit-typeahead>
</column>
</object-table>function createUser(object, searchValue){
var user = DB.user.create();
user.name = searchValue;
user.save();
}
Standard Attributes
label
labelon-press
on-presson-pressvalidate
validateAdvanced Attributes
icon
iconLast updated