button¶
Arguments: - data (object) – A configuration object
Button view.
References¶
- views
view()
.- helpers
assert()
,isUndefined()
,protoUI()
,template()
.- mixins
AtomRender()
,EventSystem()
,Settings()
.
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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | webix.protoUI({
name:"button",
touchable:true,
$skin:function(){
this.defaults.height = webix.skin.$active.buttonHeight||webix.skin.$active.inputHeight;
//used in "text"
this._labelTopHeight = webix.skin.$active.labelTopHeight||15;
this._borderWidth = webix.skin.$active.borderWidth;
},
defaults:{
template:function(obj, common){
var text = common.$renderInput(obj, common);
if (obj.badge) text = text.replace("</button>", "<span class='webix_badge'>"+obj.badge+"</span></button>");
return "<div class='webix_el_box' style='width:"+obj.awidth+"px; height:"+obj.aheight+"px'>"+ text + "</div>";
},
label:"",
borderless:true
},
$renderInput:function(obj){
var css = "class='webixtype_"+(obj.type||"base")+"' ";
return "<button type='button' "+(obj.popup?"aria-haspopup='true'":"")+css+">"+webix.template.escape(obj.label||obj.value)+"</button>";
},
$init:function(config){
this._viewobj.className += " webix_control webix_el_"+(this.$cssName||this.name);
this.data = this._settings;
this._dataobj = this._viewobj;
this._calc_size(config);
},
hotkey_setter: function(key){
var control = this;
this._addElementHotKey(key, function(view,ev){
var elem = control.$view.firstChild;
webix.html.triggerEvent(elem, "MouseEvents", "click");
webix.html.preventEvent(ev);
});
},
_addElementHotKey: function(key, func, view){
var keyCode = webix.UIManager.addHotKey(key, func, view);
this.attachEvent("onDestruct", function(){
webix.UIManager.removeHotKey(keyCode, func, view);
});
},
tooltip_setter: function(value){
var box = this._getBox() || this.$view.firstChild;
if(box)
box.title = value;
return value;
},
type_setter:function(value){
if (this._types[value])
this.$renderInput = webix.template(this._types[value]);
if (value == 'prev' || value == 'next')
this._set_inner_size = this._set_inner_size_next;
else
this._set_inner_size = false;
return value;
},
_types:{
htmlbutton: "<button type='button' class='webix_el_htmlbutton webixtype_base'>#label#</button>",
prev:"<input type='button' class='webixtype_prev' value='#label#' /><div class='webix_el_arrow webixtype_prev_arrow'></div>",
next:"<input type='button' class='webixtype_next' value='#label#' /><div class='webix_el_arrow webixtype_next_arrow'></div>",
imageButton:"<button type='button' class='webix_img_btn_abs webixtype_base' style='width:100%; line-height:#cheight#px'><div class='webix_image' style='width:#dheight#px;height:#dheight#px;background-image:url(#image#);'> </div> #label#</button>",
imageButtonTop:"<button type='button' class='webix_img_btn_abs webix_img_btn_abs_top webixtype_base'><div class='webix_image' style='width:100%;height:100%;background-image:url(#image#);'> </div> <div class='webix_img_btn_text'>#label#</div></button>",
image:"<button type='button' class='webix_img_btn' style='line-height:#cheight#px;'><div class='webix_image' style='width:#cheight#px;height:#cheight#px;background-image:url(#image#);'> </div> #label#</button>",
imageTop:"<button type='button' class='webix_img_btn_top' style='background-image:url(#image#);'><div class='webix_img_btn_text'>#label#</div></button>",
icon:"<button type='button' class='webix_img_btn' style='line-height:#cheight#px;'><span class='webix_icon_btn fa-#icon#' style='max-width:#cheight#px;'></span>#label#</button>",
iconButton:"<button type='button' class='webix_img_btn_abs webixtype_base' style='width:100%;'><span class='webix_icon fa-#icon#'></span> #label#</button>",
iconTop:"<button type='button' class='webix_img_btn_top' style='width:100%;top:4px;text-align:center;'><span class='webix_icon fa-#icon#'></span><div class='webix_img_btn_text'>#label#</div></button>",
iconButtonTop:"<button type='button' class='webix_img_btn_abs webix_img_btn_abs_top webixtype_base' style='width:100%;top:0px;text-align:center;'><span class='webix_icon fa-#icon#'></span><div class='webix_img_btn_text'>#label#</div></button>"
},
_findAllInputs: function(){
var result = [];
var tagNames = ["input","select","textarea","button"];
for(var i=0; i< tagNames.length; i++){
var inputs = this.$view.getElementsByTagName(tagNames[i]);
for(var j = 0; j< inputs.length; j++){
result.push(inputs[j]);
}
}
return result;
},
disable: function(){
var i, node,
elem = this._getBox();
webix.ui.baseview.prototype.disable.apply(this, arguments);
if(elem && elem.className.indexOf(" webix_disabled_box")== -1){
elem.className += " webix_disabled_box";
var inputs = this._findAllInputs();
for(i=0; i< inputs.length; i++)
inputs[i].setAttribute("disabled",true);
// richselect and based on it
node = this.getInputNode();
if(node && node.tagName.toLowerCase() == "div"){
this._disabledTabIndex = node.getAttribute("tabIndex");
node.removeAttribute("tabIndex");
}
if(this._settings.labelPosition == "top"){
var label = this._dataobj.firstChild;
if(label)
label.className += " webix_disabled_top_label";
}
}
},
enable: function(){
webix.ui.baseview.prototype.enable.apply(this, arguments);
var node,
elem = this._getBox();
if(elem){
elem.className = elem.className.replace(" webix_disabled_box","");
var inputs = this._findAllInputs();
for(var i=0; i< inputs.length; i++)
inputs[i].removeAttribute("disabled");
node = this.getInputNode();
if(node && !webix.isUndefined(this._disabledTabIndex))
node.setAttribute("tabIndex",this._disabledTabIndex);
if(this._settings.labelPosition == "top"){
var label = this._dataobj.firstChild;
if(label)
label.className = label.className.replace(" webix_disabled_top_label","");
}
}
},
$setSize:function(x,y){
if(webix.ui.view.prototype.$setSize.call(this,x,y)){
this.render();
}
},
setValue:function(value){
value = this.$prepareValue(value);
var oldvalue = this._settings.value;
if (this.$compareValue(oldvalue, value)) return false;
this._settings.value = value;
if (this._rendered_input)
this.$setValue(value);
this.callEvent("onChange", [value, oldvalue]);
},
$compareValue:function(oldvalue, value){ return oldvalue == value; },
$prepareValue:function(value){ return this._pattern(value, false); },
_pattern :function(value){ return value; },
//visual part of setValue
$setValue:function(value){
// this._settings.label = value;
(this.getInputNode()||{}).value = value;
},
getValue:function(){
//if button was rendered - returning actual value
//otherwise - returning last set value
var value = this._rendered_input? this.$getValue() : this._settings.value;
return (typeof value == "undefined") ? "" : value;
},
$getValue:function(){
return this._settings.value||"";
},
focus:function(){
if(!this._settings.disabled){
var input = this.getInputNode();
if (input && input.focus) input.focus();
}
},
blur:function() {
var input = this.getInputNode();
if (input && input.blur) input.blur();
},
//get input element
getInputNode: function() {
return this._dataobj.getElementsByTagName('input')[0]||this._dataobj.getElementsByTagName('button')[0];
},
//get top-level sub-container
_getBox:function(){
for(var i=0;i< this._dataobj.childNodes.length;i++){
if(this._dataobj.childNodes[i].className.indexOf("webix_el_box")>=0)
return this._dataobj.childNodes[i];
}
return null;
},
_sqrt_2:Math.sqrt(2),
_set_inner_size_next:function(){
var cfg = this._settings;
var arrow = this._getBox().childNodes[1];
var button = arrow.previousSibling;
var style = cfg.type == "next"?"right":"left";
var height = cfg.aheight-webix.skin.$active.inputPadding*2-2*this._borderWidth; //-2 - borders
var arrowEdge = height*this._sqrt_2/2;
arrow.style.width = arrowEdge+"px";
arrow.style.height = arrowEdge+"px";
arrow.style.top = (height - arrowEdge)/2 + webix.skin.$active.inputPadding+ "px";
arrow.style[style] = (height - arrowEdge)/2 +this._sqrt_2/2+ "px";
button.style.width = cfg.awidth - height/2 -2 + "px";
button.style.height = height + 2 + "px";
button.style[style] = height/2 + 2 + "px";
button.style.top = webix.skin.$active.inputPadding+ "px";
},
_calc_size:function(config){
config = config || this._settings;
if (config.autowidth)
config.width = webix.html.getTextSize((config.value||config.label), "webixbutton").width +
(config.badge ? 15 : 0) +
(config.type === "iconButton" ? 30 : 0) +
(config.type === "icon"? 20 : 0);
},
_calck_input_size:function(){
//use width for both width and inputWidth settings in clever way
//in form, we can define width for some element smaller than for siblings
//it will use inputWidth to render the desired view
this._input_width = this._settings.inputWidth ||
((this._content_width - this._settings.width > 2)?this._settings.width:0) || this._content_width;
this._input_height = this._settings.inputHeight||this._inputHeight||0;
},
resize: function(){
this._calc_size();
return webix.ui.view.prototype.resize.apply(this,arguments);
},
render:function(){
this._calck_input_size();
this._settings.awidth = this._input_width||this._content_width;
this._settings.aheight = this._input_height||this._content_height;
//image button - image width
this._settings.bheight = this._settings.aheight+2;
this._settings.cheight = this._settings.aheight- 2*webix.skin.$active.inputPadding;
this._settings.dheight = this._settings.cheight - 2; // - borders
if(webix.AtomRender.render.call(this)){
this._rendered_input = true;
if (this._set_inner_size) this._set_inner_size();
if (this._settings.align){
var handle = this._dataobj.firstChild;
if (this._settings.labelPosition == "top" && handle.nextSibling)
handle = handle.nextSibling;
switch(this._settings.align){
case "right":
handle.style.cssFloat = "right";
break;
case "center":
handle.style.display = "inline-block";
handle.parentNode.style.textAlign = "center";
break;
case "middle":
handle.style.marginTop = Math.round((this._content_height-this._input_height)/2)+"px";
break;
case "bottom":
handle.style.marginTop = (this._content_height-this._input_height)+"px";
break;
case "left":
handle.style.cssFloat = "left";
break;
default:
webix.assert(false, "Unknown align mode: "+this._settings.align);
break;
}
}
if (this.$render)
this.$render(this.data);
if (this._settings.disabled)
this.disable();
// set tooltip after render
if (this._settings.tooltip)
this.define("tooltip",this._settings.tooltip );
if (this._init_once){
this._init_once(this.data);
this._init_once = 0;
}
}
},
refresh:function(){ this.render(); },
on_click:{
_handle_tab_click: function(ev, button){
var id = webix.html.locate(ev, "button_id");
if (id && this.callEvent("onBeforeTabClick", [id, ev])){
this.setValue(id);
this.callEvent("onAfterTabClick", [id, ev]);
}
},
webix_all_segments:function(ev, button){
this.on_click._handle_tab_click.call(this, ev, button);
},
webix_all_tabs:function(ev, button) {
this.on_click._handle_tab_click.call(this, ev, button);
},
webix_inp_counter_next:function(e, obj, node){
if (!this._settings.readonly)
this.next();
},
webix_inp_counter_prev:function(e, obj, node){
if (!this._settings.readonly)
this.prev();
},
webix_inp_combo:function(e, obj, node){
node.focus();
},
webix_inp_checkbox_border: function(e, obj, node) {
if (!this._settings.disabled && (e.target||e.srcElement).tagName != "DIV" && !this._settings.readonly)
this.toggle();
},
webix_inp_checkbox_label: function(e, obj, node) {
if (!this._settings.readonly)
this.toggle();
},
webix_inp_radio_border: function(e, obj, node) {
var value = webix.html.locate(e, "radio_id");
this.setValue(value);
},
webix_inp_radio_label: function(e, obj, node) {
node = node.parentNode.getElementsByTagName('input')[0];
return this.on_click.webix_inp_radio_border.call(this, node, obj, node);
},
webix_tab_more_icon: function(ev,obj, node){
this.getPopup().resize();
this.getPopup().show(node,null,true);
},
webix_tab_close:function(ev, obj, node){
var id = webix.html.locate(ev, "button_id");
if (id && this.callEvent("onBeforeTabClose", [id, ev]))
this.removeOption(id);
}
},
//method do not used by button, but used by other child-views
_check_options:function(opts){
webix.assert(opts, this.name+": options not defined");
for(var i=0;i<opts.length;i++){
//FIXME: asserts need to be removed in final version
webix.assert(!opts[i].text, "Please replace .text with .value in control config");
webix.assert(!opts[i].label, "Please replace .label with .value in control config");
if(typeof opts[i]=="string"){
opts[i] = {id:opts[i], value:opts[i]};
}
else {
if(webix.isUndefined(opts[i].id))
opts[i].id = opts[i].value;
if(webix.isUndefined(opts[i].value))
opts[i].value = opts[i].id;
}
}
return opts;
},
_get_div_placeholder: function(obj){
var placeholder = (obj?obj.placeholder:this._settings.placeholder);
return (placeholder?"<span class='webix_placeholder'>"+placeholder+"</span>":"");
}
}, webix.ui.view, webix.AtomRender, webix.Settings, webix.EventSystem);
|