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 awayother times Firebug can be way more informative
than Chrome.
John
From: Scott Chapman
Reply-To: qooxdoo Development
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
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-
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());
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:
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
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
---
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
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
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
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
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
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
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
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
15 matches
Mail list logo