Hello Folks,
I am not sure whether It is possible or not.
But I have TabSet object with facility to addTab and RemoveTab.
User can add 15 tab at a time add List grid to tab.... filter data ... modify property.... Play with it.
But on log out I have to save everything to my BLOB object, and on log in have to load everything as it is.
How to retrieve whole tabset object and load it ??
isc.TabSet.create({
ID: "viewerTabs",
tabBarPosition: "top",
canReorderTabs: true,
canEditTabTitles: true,
titleEditEvent: "doubleClick",
tabs: [
{// Dynamically Add new tab with listgrid
ID: "addNew",
title: "Add",
icon: icons.viewer.plus,
canEditTitle: false,
canReorder: false,
canClose: false,
iconSize: 16
}
]
});
Thank you
I am not sure whether It is possible or not.
But I have TabSet object with facility to addTab and RemoveTab.
User can add 15 tab at a time add List grid to tab.... filter data ... modify property.... Play with it.
But on log out I have to save everything to my BLOB object, and on log in have to load everything as it is.
How to retrieve whole tabset object and load it ??
isc.TabSet.create({
ID: "viewerTabs",
tabBarPosition: "top",
canReorderTabs: true,
canEditTabTitles: true,
titleEditEvent: "doubleClick",
tabs: [
{// Dynamically Add new tab with listgrid
ID: "addNew",
title: "Add",
icon: icons.viewer.plus,
canEditTitle: false,
canReorder: false,
canClose: false,
iconSize: 16
}
]
});
Thank you
Comment