Hi Siarhei,
You probably have no time to address this, but I wanted to let you know:
I have a problem with the situation when a component's top node is a <qx:widget>
<?xml version="1.0" encoding="utf-8"?>
<qxt:component
author="Christian Boulanger"
className="bibliograph.ui.main.DatasourceList"
tagName="datasourceList">
<qx:widget
id="datasourcePanel"
qxt:class="collapsablepanel.Panel"
caption="Datasource"
qxt:flex="1"
value="false"
appearance="collapsable-panel-classic">
</qx:widget>
/qxt:component>
doesn't work, I need to add a <qx:composite> for it to be recognized:
<?xml version="1.0" encoding="utf-8"?>
<qxt:component
author="Christian Boulanger"
className="bibliograph.ui.main.DatasourceList"
tagName="datasourceList">
<qx:composite>
<qx:hbox>
<qx:widget
id="datasourcePanel"
qxt:class="collapsablepanel.Panel"
caption="Datasource"
qxt:flex="1"
value="false"
appearance="collapsable-panel-classic">
</qx:widget>
</qx:hbox>
</qx:composite>
</qxt:component>
Should I open a bug in the qooxdoo bugzilla for this?
Best,
Christian