Documentation

popup

a popup text editor for long texts

string popup;

Example

//for a datatable column
{ id:"title",   header:"Film title", editor:"popup", width:200}

See also

Details

There exist color and date popup editors. They are defined as editor:"color" and editor:date respectively.

Popup text editor features a textarea input in tis body. To configure the popup use the following code: \

   webix.editors.$popup = {
        text:{
            view:"popup", 
            body:{view:"textarea", width:250, height:50}
        }
    };
Back to top