Hi,
Can you please tell me, what is wrong with this code. When i try to expand "Second" section, why it is showing third? And if i click last section it is giving an error - "Visibility" is null or not an Object
Thank you
Can you please tell me, what is wrong with this code. When i try to expand "Second" section, why it is showing third? And if i click last section it is giving an error - "Visibility" is null or not an Object
Code:
isc.HTMLFlow.create({ ID: "htmlFlow", overflow: "auto", padding:10, contents: "<b>Severity 1</b> - Critical problem<br>System is unavailable in production or " + "is corrupting data, and the error severely impacts the user's operations." + "<br><br><b>Severity 2</b> - Major problem<br>An important function of the system " + "is not available in production, and the user's operations are restricted." + "<br><br><b>Severity 3</b> - Minor problem<br>Inability to use a function of the " + "system occurs, but it does not seriously affect the user's operations." }) isc.SectionStack.create({ ID:"leftSide", width:280,height:400, backgroundColor:"white", showResizeBar:true, visibilityMode:"mutex", animateSections:true, sections:[ {title:"First", items:[htmlFlow]}, {title:"Second", items:[htmlFlow]}, {title:"Third", items:[htmlFlow]}, {title:"Fourth", items:[htmlFlow]}, {title:"Fifth", items:[htmlFlow]}, {title:"Sixth", items:[htmlFlow]} ] });
Comment