All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.js.wonderbar.ext.WonderbarItem.js Maven / Gradle / Ivy

There is a newer version: 6.0.0-RC1
Show newest version
zk.$package('wonderbar.ext');
/**
 * WonderbarItem
 */
wonderbar.ext.WonderbarItem = zk.$extends(zul.Widget, {
    keyIndex: null,

    label: null,

    searchTerm: null,

    uniqueKey: null,

    uniquePriority: null,

    value: null,

    category: null,

    selectable: true,

    getZclass: function () {
        return this._zclass != null ? this._zclass : 'cwf-wonderbar-item';
    },

    _sameCategory: function (sib) {
    	var cat = !sib || !sib.category ? null : sib.category;
    	return cat === this.category;
    }

});





© 2015 - 2025 Weber Informatics LLC | Privacy Policy