Webix version 2.4 brings you a new UI component that allows creating portal layouts in an easy and intuitive way. Portlet component can be dragged over the page and swapped with other portlets. This behaviour allows you to rearrange your web page elements the way you want. Let’s take a look at the basics of portlet usage.
Portlets Basics
You can create a basic portlet in the same way as other Webix UI components. Just set “portlet” as the view property value. The body property defines the portlet content:
// portlet content
}
By arranging portlets into rows and columns, you can create the required layout which can be easily reorganized if necessary:
{ view:"portlet", body:{
template:"Row 1"
}},
{ view:"portlet", body:{
template:"Row 2"
}},
{ type:"wide", cols:[
{ view:"portlet", mode: "cols",body:{
template:"Col 1"
}},
{ view:"portlet", mode: "cols", body:{
template:"Col 2",
}}
]
}
]
The result is shown below: