Hi all,
I have a number of members in my qooxdoo classes that are traditional
Javascript objects in my code like:
something : {
...
}
however any documentation I write for these does not show up in the
API viewer. Is there someway to get it show up?
-deech
Thanks, guys!
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/How-does-one-center-the-text-in-a-table-header-tp6034661p6037104.html
Sent from the qooxdoo mailing list archive at Nabble.com.
--
The ulti
it is here:
https://qooxdoo-contrib.svn.sourceforge.net/svnroot/qooxdoo-contrib/trunk/qooxdoo-contrib/CollapsablePanel/trunk/
cheers,
Gabi
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/New-Contribution-Collapsable-Panel-tp3791440p6036225.html
Sent from the qooxdoo mailing li
Hi,
- make your backend return just data, not the column headers
- then use tableModel.setData(data)
- read the API at
http://demo.qooxdoo.org/1.3.x/apiviewer/#qx.ui.table.model.Simple
for info on accessing the table rows/cells, etc
Cheers,
Fritz
On Thu, 17 Feb 2011, chrjab wrote:
>
> Hi
Hi,
I'm new here and was trying to find this widget in the downloaded package
but I don't see it. Did it make it into the main branch or has it been
renamed? I'd like to use it!
Thanks.
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/New-Contribution-Collapsable-Panel-tp37914
Hi there,
I'm a qooxdoo newbie and need some help.
I try to fill a table with json data. This is my sourcecode:
var doc = this.getRoot();
var tableModel = new qx.ui.table.model.Simple();
tableModel.setColumns([ "Jahr", "Wert" ]);
Hi,
you can set a custom headerrenderer like this one below:
qx.Class.define("example.CenteredHeader",
{
extend : qx.ui.table.headerrenderer.Default,
construct : function()
{
this.base(arguments);
},
members :
{
// overridden
updateHeaderCell : function(cellInfo, cellW
Hi Andy,
you can create a custom Appearance that redefines
"table-header-cell/label", adding alignX : "center" to the returned
style definitions.
Regards,
Daniel
On 02/17/2011 05:43 AM, arnis_andy wrote:
>
> I have scrubbed the forums (and possibly not been using the right search
> terms,) bu