Lines Matching refs:selected
29 * @attribute selected
33 * @description Number indicating if the Widget is selected. Possible
36 * <dt>0</dt> <dd>(Default) Not selected</dd>
37 * <dt>1</dt> <dd>Fully selected</dd>
38 * <dt>2</dt> <dd>Partially selected</dd>
41 selected: {
308 * Updates the UI to reflect the <code>selected</code> attribute value.
312 * @param {number} selected The selected value to be reflected in the UI.
314 _uiSetChildSelected: function (selected) {
317 sClassName = this.getClassName("selected");
319 if (selected === 0) {
330 * Default attribute change listener for the <code>selected</code>
354 this._uiSetChildSelected(this.get("selected"));