webix.ui({
rows:[
{
cols:[
{},
{
view:“label”,
label : “abc”,
//labelPosition:“top”,
},
{
view : “textarea”,
height : 150,
id : “def”,
name : “def”,
width : 250,
}
]}
]
});
This is my code.I want to set the label at the top left of the textarea.Is there any way I can do that using this piece of code.