Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    "TypeError: _17 is undefined when adding SectionStack as a Tab in a TabSet

    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

    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: [
    			]})
        }]
    });

    #2
    This was a bug we've now fixed - please retry with a build after today (1/8 or later).

    In the meantime, just declare a default section to avoid the bug.

    Comment


      #3
      Thank you for the quick response! Workaround works well.

      Comment

      Working...
      X