Re: [qooxdoo-devel] app is acting like a breakpoint has been set with Firebug.

2011-12-20 Thread John Spackman
Have you tried running it with Chrome? Depending on the particular problem, Firebug will be unclear (or just not say anything at all) and Chrome will pinpoint it straight awayŠother times Firebug can be way more informative than Chrome. John From: Scott Chapman Reply-To: qooxdoo Development

[qooxdoo-devel] app is acting like a breakpoint has been set with Firebug.

2011-12-20 Thread Scott Chapman
I'm using Firefox 8.0 on Ubuntu 10.04 with FireBug active, with qooxdoo 1.6. My test app is comprised of these two classes: qx.Class.define("foo.Application", {   extend : qx.application.Standalone,   members :   {     main : function()     {   this.base(arguments);   // Add log appender

Re: [qooxdoo-devel] How to tell if tree node clicked on is a leaf or not?

2011-12-20 Thread Marc Puts
It's probably easier than you think. :) var treeItem = e.getTarget(); if (treeItem instanceof qx.ui.tree.TreeFolder) { //treeItem is not a leaf } else if (treeItem instanceof qx.ui.tree.TreeFile) { //treeItem is a leaf } -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-

[qooxdoo-devel] How to tell if tree node clicked on is a leaf or not?

2011-12-20 Thread Scott Chapman
Here's my tree dblclick handler:   this.__kioskTree.addListener("dblclick",     function (e) {   //var treeItem = this.__kioskTree.getTreeItem(e.getTarget());   var treeItem = e.getTarget();   console.log(treeItem);   console.log(treeItem.getLabel());  

Re: [qooxdoo-devel] How to change icons in Tree?

2011-12-20 Thread Derrell Lipman
On Tue, Dec 20, 2011 at 14:42, Scott Chapman wrote: > I'm hoping there is a simple way to change the icons for the entire tree > without having to change each node/leaf individually. > Tree icons are specified in the appearance theme. In qx/theme/modern/Appearance.js you'll find this section:

Re: [qooxdoo-devel] How to change icons in Tree?

2011-12-20 Thread Scott Chapman
I'm hoping there is a simple way to change the icons for the entire tree without having to change each node/leaf individually. -Mustafa Sak wrote: - To: qooxdoo Development From: Mustafa Sak Date: 12/19/2011 11:13PM Subject: Re: [qooxdoo-devel] How to change icons in Tree? You can bin

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Derrell Lipman
On Tue, Dec 20, 2011 at 11:18, Benjamin Dreux wrote: > After giving much attention to the number cell renderer, i found that > the value that need to ne return is "qooxdoo-table-cell > qooxdoo-table-cell-right" > Great. Glad you got it working. Derrell ---

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Benjamin Dreux
After giving much attention to the number cell renderer, i found that the value that need to ne return is "qooxdoo-table-cell qooxdoo-table-cell-right" Thanks for your advices. Regards Le 20 décembre 2011 11:09, Benjamin Dreux a écrit : > I gave it a try, but the text of the column ended up on

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Benjamin Dreux
I gave it a try, but the text of the column ended up on the left, over the text of the others column text. Maybe it's not the right cell Class to return Regards Le 20 décembre 2011 10:21, Derrell Lipman a écrit : > On Tue, Dec 20, 2011 at 10:11, Benjamin Dreux > wrote: >> >> Here is a quick exe

[qooxdoo-devel] Handling of modal and alwaysOnTop properties

2011-12-20 Thread Fritz Zaucker
Hi, in the default desktop window manager (qx.ui.windows.Manager) the handling of the properties modal and alwaysOnTop seems to be a bit counter-intuitive to me: If a window has the modal-property set, then this window "wins" against another window without modal, but with the alwaysOnTop-property

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Derrell Lipman
On Tue, Dec 20, 2011 at 10:11, Benjamin Dreux wrote: > Here is a quick exemple > > If i understand you, i just need to set the useAutoAlign to align the text > But in my exemple it doesn't work > > What is the part i don't get correctly > You didn't include your example, but what I'm suggesting i

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Benjamin Dreux
Here is a quick exemple If i understand you, i just need to set the useAutoAlign to align the text But in my exemple it doesn't work What is the part i don't get correctly Le 20 décembre 2011 09:39, Derrell Lipman a écrit : > On Tue, Dec 20, 2011 at 09:31, Benjamin Dreux > wrote: >> >> Hi >> I

Re: [qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Derrell Lipman
On Tue, Dec 20, 2011 at 09:31, Benjamin Dreux wrote: > Hi > I'm wondering how could i change the text alignement of a table cell > (all cell of a specific column) > I found the class new qx.ui.table.cellrenderer.String > But i can find out how to use it. > I defined a specific align in the constru

[qooxdoo-devel] Text alignement of Table

2011-12-20 Thread Benjamin Dreux
Hi I'm wondering how could i change the text alignement of a table cell (all cell of a specific column) I found the class new qx.ui.table.cellrenderer.String But i can find out how to use it. I defined a specific align in the constructor, but the column is not align at right (the specified align st

Re: [qooxdoo-devel] Huston We've got a problem! ( Web2py templating == qooxdoo 1.6 templating !)

2011-12-20 Thread Phyo Arkar
Here is workaround in web2py: import os from gluon.template import render view_content = open( os.path.join(request.folder, 'views', 'your_view.html')).read() return render(view_content,delimiters=('{%','%}')) #That will change default web2py's {{ }} to {% %} #and in view logic we can do like t