Hi,
I have my webix code like below.
webix.ui({
view :"window",height:150,width:600,id:"Movie Alert",
head:"Movie Data...!",
close:false,hidden:false,position:"center",
body:{
view : "form",
elements:[
{
view :"layout",
rows:[
{ view:"label", label: "Are you sure you want to Book Movie....?", align:"center"},
{
cols:[
{view:"button",label:"Yes"},
{view:"button",label:"No"}
]
}
]
}
]
}
});
I want to add icon:“wxi-alert” in front of the label “Are you sure you want to Book Movie…?”
How can i do that?