First of all thanks to all who contribute to and work on the DynAPI
'1' and 2. Great!
Now my question: I use a variant of the IBSScrollwindow to put a form
in there. This should fire a cgi to build an image. This will then
be displayed in a IBSWindow. How do I catch the form values from the
IBSScrollwindow? Does it matter that the content layer of the
IbsScrollWindow keeps the html in a <table>?
// the IbsScrollWindow with the form
textBgLyr = new DynLayer(null,30,50,350,444,'#138673')
DynAPI.document.addChild(textBgLyr)
textbox = new IbsScrollWindow()
textbox.setHTML(<string variable with form>)
textbox.moveTo(2,22)
textbox.setSize(330,420)
textbox.setBgColor('#ffffff')
textbox.setVisible(true)
textBgLyr.addChild(textbox)
textbox.setPadding(10)
// the IbsWindow where the images should appear
diaShow = new IbsWindow("Diashow")
diaShow.setTheme(new IbsWindowTheme('../js/images/themes/dynwindow/','#138673','#66ccbb'))
diaShow.setSize(300,225)
diaShow.moveTo(250,20)
diaShow.setVisible(false)
diaShow.setAlwaysOnTop(true)
DynAPI.document.addChild(diaShow)
Thanks, Martin
|