Hi Chris,

thanks for your help! I tested the issue in Qooxdoo 1.0 as well as in 
1.1. In the meantime I did a "generate source-all" and now the images 
are displayed fully and correct, so this issue is solved for me.

However I want to note that the parameters for image width and height in 
cellrenderer.Image() do not seem to have any effect: changing them 
doesn't alter the picture's appearance in any way. This can be verified 
even in the playground example you provided. But this might be a 
(desired) feature, not a bug.

Regard,

Andrea


> Hi,
> which qooxdoo version do you use? I couldn't reproduce your issue with 
> qooxdoo 1.1.
> Here my playground example:
> http://tinyurl.com/2cakk5d
> Cheers,
> Chris
>
>> I'm trying to display in a table some images sized 32x32 pixels (or
>> larger). However, whatever parameters I pass to cellrenderer.Image, and
>> whatever the image's size is, only the first 16x16 pixels are shown; the
>> rest of the mage is truncated. Where is the mistake?
>>
>>        var tableModel = new qx.ui.table.model.Simple();
>>        tableModel.setColumns([ "Image" ]);
>>        tableModel.setData([[ "image32x32.png"]]);
>>
>>        var table = new qx.ui.table.Table(tableModel);
>>        table.setRowHeight(32);
>>        var renderer = new qx.ui.table.cellrenderer.Image(32, 32);
>>        table.getTableColumnModel().setDataCellRenderer(0, renderer);
>>
>>        this.getRoot().add(table, {left: 10, top: 10});
>>
>> Thanks for any hint (and solution...)
>>
>> A. Weber
>> Penplan Consulting GmbH

------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to