In the demos there is one to embed a widget into normal html page.
Similar to the exmaple in html Page I wrote:
<div id="qxframe"></div>
<script type="text/javascript" src="script/shopajx.js"></script>
<script type="text/javascript">
        if (qx.core.Setting.get("qx.isSource")) {
                
qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_DEBUG);
        } else {
                
qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_ERROR);
        };
        qx.core.Init.getInstance().setApplication(new shopajx.Application);
</script>

and in my Application:
var d = qx.ui.core.ClientDocument.getInstance();
var inlineWidget = new qx.ui.basic.Inline("qxframe");
inlineWidget.setHeight("auto");
inlineWidget.setWidth("auto");
inlineWidget.add(.....);
d.add(inlineWidget);

The example says: "Application layout is disabled by using qx.core.Settings.
Scrollbars appear, if the content is bigger than the window."
But this is not my experience: the scrollbars of the browser are invisible,
if the content extends the browser windows. What is to do?
Torsten

-- 
View this message in context: 
http://www.nabble.com/browser-scrollbar-and-inlineWidget-tf4354777.html#a12408936
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to