Hi Isomorphic,
how can a SectionStack be added to a TabSet? Executing the code below leads to JavaScript Error “TypeError: _17 is undefined”
using SmartClient build v82p_2012-07-09
Regards Thomas
how can a SectionStack be added to a TabSet? Executing the code below leads to JavaScript Error “TypeError: _17 is undefined”
using SmartClient build v82p_2012-07-09
Regards Thomas
Code:
isc.TabSet.create({
ID: "tabSet",
width: 400,
height: 200,
tabs: [{
id: "profile",
title: "Profile",
pane: isc.SectionStack.create({
ID: "sectionStack",
visibilityMode: "multiple",
width: 300,
height: 500,
sections: [
]})
}]
});
Comment