Hello List,
actually I am playing around with the low-level API, especially with
qx.bom.Collection and qx.bom.Selector.
My goal is to fill an existing table #myTable with additional rows.
With FF3 everything is fine, but IE7 does not show any of the
dynamically generated rows. Has anybody an idea, what is going wrong?
A hint may be, that the IE Developer toolbar says, that the rowIndex
of all generated rows is -1.
Regards, Florian
Code excerpt:
<table id="myTable">
<tr>
<th></th>
<th>Title</th>
<th>Date</th>
</tr>
</table>
<script type="text/javascript" charset="utf-8">
// register callback
qx.bom.Lifecycle.onReady(onReady, window);
// executed when the application/scripts are loaded
function onReady()
{
// fill table
var itemCount = 10;
var table = qx.bom.Collection.query("#myTable");
for (var i = 0; i < itemCount; i++)
{
table.append("<tr><td name=\"pos\">"+(i+1)+"</td><td
name=\"title\"></td><td name=\"date\"></td></tr>");
}
}
</script>
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel