SmartClient Ajax RIA system
Enterprise Version v9.1p_2014-05-23 (2014-05-23)
We just updated SmartClient to Enterprise version.
If we have a PortalLayout, after user drag and drop, how I should save the new layout?
I think enterprise have this feature but I'm not be able to find it.
The general idea is we have a TabSet, which contains multiple Tab, each Tab's pane is a PortalLayout, which we can add multiple Portlets inside.
How can the above application uses EditPane to save the layout information.
Thanks
Enterprise Version v9.1p_2014-05-23 (2014-05-23)
We just updated SmartClient to Enterprise version.
If we have a PortalLayout, after user drag and drop, how I should save the new layout?
I think enterprise have this feature but I'm not be able to find it.
The general idea is we have a TabSet, which contains multiple Tab, each Tab's pane is a PortalLayout, which we can add multiple Portlets inside.
Code:
isc.TabSet.create({ ID: "tabSet", tabs: [ { title: "tab1", pane: isc.PortalLayout.create({ ID: "portal", portlets: [ isc.Portlet.create({ title: "Portlet 1" }), isc.Portlet.create({ title: "Portlet 2" }) ] }); } ] });
Thanks
Comment