SmartClient Version: v9.1p_2014-08-27/PowerEdition Development Only (built 2014-08-27)
tested with safari, Firefox 31 & 32, chrome 37.0.2062.94 on MAC OSX
in a *just refreshed* showcase please modify the #sectionsExpandCollapse sample like this:
and then click the 'show date chooser' icon, you'll see that the 'footer' of the DateChooser doesn't show
tested with safari, Firefox 31 & 32, chrome 37.0.2062.94 on MAC OSX
in a *just refreshed* showcase please modify the #sectionsExpandCollapse sample like this:
Code:
isc.DynamicForm.create({ ID: "theForm", height:30, fields: [ {name: "aDate", type: "date", useTextField: true} ] }) isc.VLayout.create({ ID: "paneLayout", members: [theForm] }) 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: "sectionStack", visibilityMode: "multiple", width: 300, height: "100%", border: "1px solid blue", sections: [ {title: "Blue Pawn", expanded: true, items: [ isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"}) ]}, {title: "HTMLFlow", expanded: true, canCollapse: true, items: [ htmlFlow ]}, {title: "Green Cube", expanded: true, canCollapse: false, items: [ isc.TabSet.create({ ID: "tabSet", height:65, tabs: [ {title: "tab", pane: paneLayout} ] }) ] } ] }); isc.VLayout.create({ ID: "wLayout", height: "100%", members: [sectionStack] })
Comment