Lines Matching defs:selected
27 * @attribute selected
31 * @description Number indicating if the Widget is selected. Possible
34 * <dt>0</dt> <dd>(Default) Not selected</dd>
35 * <dt>1</dt> <dd>Fully selected</dd>
36 * <dt>2</dt> <dd>Partially selected</dd>
39 selected: {
306 * Updates the UI to reflect the <code>selected</code> attribute value.
310 * @param {number} selected The selected value to be reflected in the UI.
312 _uiSetChildSelected: function (selected) {
315 sClassName = this.getClassName("selected");
317 if (selected === 0) {
328 * Default attribute change listener for the <code>selected</code>
352 this._uiSetChildSelected(this.get("selected"));