a popup text editor for long texts
//for a datatable column
{ id:"title", header:"Film title", editor:"popup", width:200}
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}
}
};