NonGPL¶
-
class
webix.ui.
NonGPL
(data)¶ Arguments: - data (object) – A configuration object
Nongpl 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 | webix.protoUI({
name:"NonGPL",
$init:function(){
webix.message("GPL version does not support '"+this.name+"'","error",-1);
}
},webix.ui.view);
webix.protoUI({ name:"organogram" },webix.ui.NonGPL);
webix.protoUI({ name:"barcode" },webix.ui.NonGPL);
webix.protoUI({ name:"portlet" },webix.ui.NonGPL);
webix.protoUI({ name:"pdfviewer" },webix.ui.NonGPL);
webix.protoUI({ name:"pdfbar" },webix.ui.NonGPL);
webix.protoUI({ name:"excelviewer" },webix.ui.NonGPL);
webix.protoUI({ name:"excelbar" },webix.ui.NonGPL);
webix.protoUI({ name:"datasuggest" },webix.ui.NonGPL);
webix.protoUI({ name:"gridsuggest" },webix.ui.NonGPL);
webix.protoUI({ name:"multitext" },webix.ui.NonGPL);
webix.protoUI({ name:"multiselect" },webix.ui.NonGPL);
webix.protoUI({ name:"multicombo" },webix.ui.NonGPL);
webix.protoUI({ name:"multisuggest" },webix.ui.NonGPL);
webix.protoUI({ name:"checksuggest" },webix.ui.NonGPL);
webix.protoUI({ name:"treemap" },webix.ui.NonGPL);
webix.protoUI({ name:"rangeslider" },webix.ui.NonGPL);
webix.protoUI({ name:"rangechart" },webix.ui.NonGPL);
webix.protoUI({ name:"datalayout" },webix.ui.NonGPL);
webix.protoUI({ name:"abslayout" },webix.ui.NonGPL);
|