Skip to content

ItemPicker

NickWare edited this page Dec 27, 2021 · 1 revision

The ItemPicker control HTML model:

<div class="ItemPicker Rounded" data-itempickername="IP1">
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</div>

JS:

    facefull.ItemPickers["IP1"].onSelect = function(id) {
        console.log("Selected item", id);
    }
    
    facefull.ItemPickers["IP1"].doSelect(0);
Clone this wiki locally