Popup editor in datatable

can I to do popup editor from datatable larger?

Hi Wade,

Which of the popup editors are you interested in?

Popup editors can be configured in a editor popup object (choose the needed editor type, and define the needed sizes):

webix.editors.$popup = {
        text:{
            view:"popup", width:250, height:200,
            body:{view:"textarea"}
        },
        color:{
            view:"popup",
            body:{ view:"colorboard", width:500, height:500, rows:50, cols:50 }
        },
        date:{
            view:"popup",
            body:{ view:"calendar", weekNumber:true }
        },
         richselect:{ //for combo as well
		view:"suggest",
		body:{ view:"list", select:true }
	}
    };

With combo and richselect you’ll need the following code in the column config where you can as well provide dimensions:

suggest:{fitMaster:false}

Please check the code snippet for details http://webix.com/snippet/4d767a92

Yes, that’s what I need, thanks.