Documentation

$popup

set of configuration options for popup editors

object $popup;

Example

webix.editors.$popup = {
        text:{
            view:"popup", 
            body:{view:"textarea", width:250, height:50}
        },
        color:{
            view:"popup",
            body:{ view:"colorboard", width:200, height:200, rows:20, cols:20 }
        },
        date:{
            view:"popup",
            body:{ view:"calendar", weekNumber:true, width: 220, height:200}
        }
    };

See also

Details

$popup allows for changing all the popup editors in one scope.

Date and Color editors are popups by default. For text popup editor, you should specify the "popup" value for the editor property.

Back to top