popup

a popup text editor for long texts

string popup;

Example

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

Related samples

Details

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

A popup text editor features a textarea input in its body. To configure the popup, use the following code:

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