segmented¶
-
class
webix.ui.
segmented
(data)¶ Arguments: - data (object) – A configuration object
Segmented view.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | webix.protoUI({
name:"segmented",
_allowsClear:false,
$init:function(){
this.attachEvent("onChange", function(value){
if (this._settings.multiview)
this._show_view(value);
});
this.attachEvent("onAfterRender", webix.once(function(){
if (this._settings.multiview && this._settings.value)
this._show_view(this._settings.value);
}));
},
_show_view:function(value){
var top = this.getTopParentView();
var view = null;
//get from local isolate
if (top && top.$$)
view = top.$$(value);
//or check globally
if (!view)
view = webix.$$(value);
if(view && view.show)
view.show();
},
defaults:{
template:function(obj, common){
if(!obj.options)
webix.assert(false, "segmented: options undefined");
var options = obj.options;
common._check_options(options);
options = common._filterOptions(options);
var width = common._get_input_width(obj);
var id = webix.uid();
var html = "<div style='width:"+width+"px' class='webix_all_segments' role='tablist' aria-label='"+webix.template.escape(obj.label)+"'>";
var optionWidth = obj.optionWidth || Math.floor(width/options.length);
if(!obj.value)
obj.value = options[0].id;
for(var i=0; i<options.length; i++){
html+="<button type='button' style='width:"+(options[i].width || optionWidth)+"px' role='tab' aria-selected='"+(obj.value==options[i].id?"true":"false")+"' tabindex='"+(obj.value==options[i].id?"0":"-1")+"'";
html+="class='"+"webix_segment_"+((i==options.length-1)?"N":(i>0?1:0))+((obj.value==options[i].id)?" webix_selected ":"")+"' button_id='"+options[i].id+"' >";
html+= options[i].value+"</button>";
}
return common.$renderInput(obj, html+"</div>", id);
}
},
_getInputNode:function(){
return this.$view.getElementsByTagName("BUTTON");
},
focus: function(){ this._focus(); },
blur: function(){ this._blur(); },
$setValue:function(value){
var options = this._getInputNode();
for(var i=0; i<options.length; i++){
var id = options[i].getAttribute("button_id");
options[i].setAttribute("aria-selected", (value==id?"true":"false"));
options[i].setAttribute("tabindex", (value==id?"0":"-1"));
if(value==id)
webix.html.addCss(options[i], "webix_selected");
else
webix.html.removeCss(options[i], "webix_selected");
}
},
getValue:function(){
return this._settings.value;
},
getInputNode:function(){
return null;
},
optionIndex:function(id){
var pages = this._settings.options;
for (var i=0; i<pages.length; i++)
if (pages[i].id == id)
return i;
return -1;
},
addOption:function(id, value, show, index){
var obj = id;
if (typeof id != "object"){
value = value || id;
obj = { id:id, value:value };
} else {
id = obj.id;
index = show;
show = value;
}
if (this.optionIndex(id) < 0)
webix.PowerArray.insertAt.call(this._settings.options, obj, index);
this.refresh();
if (show)
this.setValue(id);
},
removeOption:function(id, value){
var index = this.optionIndex(id);
var options = this._settings.options;
if (index >= 0)
webix.PowerArray.removeAt.call(options, index);
// if we remove a selected option
if(this._settings.value == id)
this._setNextVisible(options, index);
this.callEvent("onOptionRemove", [id, this._settings.value]);
this.refresh();
},
_setNextVisible: function(options, index){
var size = options.length;
if(size){
index = Math.min(index, size-1);
//forward search
for (var i=index; i<size; i++)
if (!options[i].hidden)
return this.setValue(options[i].id);
//backward search
for (var i=index; i>=0; i--)
if (!options[i].hidden)
return this.setValue(options[i].id);
}
//nothing found
this.setValue("");
},
_filterOptions: function(options){
var copy = [];
for(var i=0; i<options.length;i++)
if(!options[i].hidden)
copy.push(options[i]);
return copy;
},
_setOptionVisibility: function(id, state){
var options = this._settings.options;
var index = this.optionIndex(id);
var option = options[index];
if (option && state == !!option.hidden){ //new state differs from previous one
option.hidden = !state;
if (state || this._settings.value != id){ //show item, no need for extra steps
this.refresh();
} else { //hide item, switch to next visible one
this._setNextVisible(options, index);
}
}
},
hideOption: function(id){
this._setOptionVisibility(id,false);
},
showOption: function(id){
this._setOptionVisibility(id,true);
},
_set_inner_size:false
}, webix.HTMLOptions, webix.ui.text);
|