Gaetan de Menten schrieb:
> On Feb 11, 2008 12:25 PM, Fabian Jakobs <[EMAIL PROTECTED]> wrote:
>
>>> Does anybody know if there is a better way than:
>>> var statics = qx.Class.getByName(this.classname)
>>>
>>> to access the static members/class variables of the "current" (most
>>> specialized)
Good day,
I have a similar tableEditor to a example test "Table CellEditor_1" with this
data:
var tableData2 =
[
[ 'referencia', 'Nombre', '', {'options': this.rowDataProc }],
[ 'cantidad', 'Cantidad', '']
];
The frist row have any options in the var list "
Thanks for your reply guys.
I just want to re-format my sentence. Aplogies for my spell error.
I am not looking for deeper and dynamic heirarchies. At the most I will go
for 2 more nodes under example.
You think there is a shortcut. It is even OK if I get atleast 1 more node
under example. As
kanugula wrote:
> Hello,
>
> How can I add a sub folder let's say "atoms" under example folder in left
> tree in Demo Browser?
>
> I looked at gendata.py code, I don't know anything about it.
> .
> for category in [ "example", "test", "performance" ]:
> .
yes sorry this was my first bug submitted.
BTW combo are not working on trunk. See Showcase, r11720
Probably I should wait in the same way some more commits.
Regards,
Mar
On Feb 11, 2008 6:45 PM, thron7 <[EMAIL PROTECTED]> wrote:
> Marco,
>
> thanks for the hint. The trunk may be instable interm
Hello,
I have put online the first Beta of my bibliography application
Bibliograph for my university department:
http://rsoz.rewi.hu-berlin.de/~baer/bibliograph/frontend/build/
You can see only 20% of what it is capable of, the rest is only
accessible after a login. It is built with qooxdoo 0.
Marco,
thanks for the hint. The trunk may be instable intermittently, and you
might have hit such a version. I tried it just now and the 'make' worked
fine (using r11720).
If you spot an issue, it is always helpful if you include the SVN
revision number in your report. Sometimes the issue is g
Gaetan de Menten wrote:
> Could anybody comment on this?
>
> On Dec 6, 2007 12:33 PM, Gaetan de Menten <[EMAIL PROTECTED]> wrote:
>
>> Hi list,
>>
>> Does anybody know if there is a better way than:
>> var statics = qx.Class.getByName(this.classname)
>>
>> to access the static members/class vari
> There isn't one, but I suspect all you need to do is extend
> qx.ui.table.cellrenderer.Default and override _getContentHtml with
> this:
I was going to add that we also had to work with updateDataCellElement
but I can't find any references to this in the code anymore.
The only place it occurs i
> I modified the original Object.js-file to test the applied patch
> (Bugzilla BugNr: 764) but this didn't solve my problem.
Did you also change the value manager? See
http://bugzilla.qooxdoo.org/show_bug.cgi?id=764#c3
Also, check out the getNewObject code that's kicking around - it's in SVN
now
On Feb 11, 2008 11:46 AM, Tobias Koller (GERMO GmbH) <[EMAIL PROTECTED]> wrote:
> did you (or someone else) ever implement this "qx.ui.table.cellrender.Html "
> cellrenderer?
There isn't one, but I suspect all you need to do is extend
qx.ui.table.cellrenderer.Default and override _getContentHtml w
Hi Fabian,
did you (or someone else) ever implement this
"qx.ui.table.cellrender.Html " cellrenderer?
Thanks
Tobias
Fabian Jakobs wrote:
> Dirk Wellmann schrieb:
>
>> Hi Deepakraj,
>>
>> sorry for coming back late, but I was very busy the past days.
>>
>> Just take a closer look at t
Hi fabian,
you are right! When I minimize my browser much of the memory is free again.
Thanks a lot!!
Tobias
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Fabian Jakobs
Gesendet: Montag, 11. Februar 2008 17:18
An: qooxdoo Development
Be
Gaetan de Menten wrote:
>
>> Does anybody know if there is a better way than:
>> var statics = qx.Class.getByName(this.classname)
>> to access the static members/class variables of the "current" (most
>> specialized) class from one of its parent class?
>
Static variables should be typically ac
Hi,
I modified the original Object.js-file to test the applied patch (Bugzilla
BugNr: 764) but
this didn't solve my problem. IE's memory still increases every time I click
change my layout (this layout has nothing to do with the appearance,etc. it's
my own class to arrange 3 widgets on my page)
Hi Tobias,
I think you have run into common browser issue: Disposing an object does
not mean that the browser's garbage collector (GC) immediately frees the
object's memory. Garbage Collector runs are usually very infrequently
and hard to predict. The only way to force a GC run I know of is to
[EMAIL PROTECTED] frontend]$ make
[.. snip ..]
* Resolving dependencies: ..Could not parse file
qx.util.fsm.__init__
Generally this means that there is a syntactial problem with your source-code.
Please omit the usage of nested comments like '/* foo /* bar */'.
make[2]: *** [e
On Mon, 11 Feb 2008 14:48 + (GMT Standard Time), Hugh Gibson
<[EMAIL PROTECTED]> wrote:
> > Interesting. No one has ever requested that before. Please add a
> > ticket with your recommendation on how one would specify the
> > position
> > (put this child at position 3; put this child before/a
> Interesting. No one has ever requested that before. Please add a
> ticket with your recommendation on how one would specify the
> position
> (put this child at position 3; put this child before/after child X;
> etc.) and when I get a chance, I'll try to add that functionality.
OK. Looking at
Hi,
On click of a button, I want to start a process at the server and
use a Timer to do a periodical retrieval of the console output from the
server for that process till the end of the output.
I declared a timer as an instance variable, initialized in the
constructor, and associated an "interv
Hugh Gibson schrieb:
>> The best way to solve this is to use themes. I can think of two
>> possible ways:
>>
>> 1. Add another entry to the appearance theme and set the appearance
>> property of the tree folders you want to highlight to the new theme
>> id:
>> 2. Introduce a new state for tree f
On Mon, 11 Feb 2008 11:13 + (GMT Standard Time), Hugh Gibson
<[EMAIL PROTECTED]> wrote:
> OK, I took a quick look and quickly hit a problem: how do I add a branch
> or leaf out of order?
Interesting. No one has ever requested that before. Please add a
ticket with your recommendation on how o
> thanks for your memory leak investigations. I have taken a closer
> look at the issue, when disposed objects remain in the Color-,
> Border-, or Fontmanager. Sebastian suggested to just call the value
> manager's connect method with a "null" value in the widget dispose
> method. Since "null"
> The best way to solve this is to use themes. I can think of two
> possible ways:
>
> 1. Add another entry to the appearance theme and set the appearance
> property of the tree folders you want to highlight to the new theme
> id:
> 2. Introduce a new state for tree folder and overwrite the exi
On Feb 11, 2008 12:25 PM, Fabian Jakobs <[EMAIL PROTECTED]> wrote:
>
> > Does anybody know if there is a better way than:
> > var statics = qx.Class.getByName(this.classname)
> >
> > to access the static members/class variables of the "current" (most
> > specialized) class from one of its parent cl
Hi Gaetan,
> Any thoughts on this patch/reasoning behind why it is so?
>
> On Dec 10, 2007 11:44 AM, Gaetan de Menten <[EMAIL PROTECTED]> wrote:
>
>> Hi there,
>>
>> I wonder why in the default themes, the background of the text-field
>> parts (included in other widgets) is explicitly set to "tr
Hi Gaetan,
> Does anybody know if there is a better way than:
> var statics = qx.Class.getByName(this.classname)
>
> to access the static members/class variables of the "current" (most
> specialized) class from one of its parent class?
>
I think this is the best way to do it.
> this.self(argume
> > The difference in your "special algorithms" will likely be in
> > working
> > with the data in the data model rather than from within the tree
> > widget, but I think you'll find the same capabilities are
> > available.
> > I suspect you'll find it much easier than you're currently
> > envis
Any thoughts on this patch/reasoning behind why it is so?
On Dec 10, 2007 11:44 AM, Gaetan de Menten <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I wonder why in the default themes, the background of the text-field
> parts (included in other widgets) is explicitly set to "transparent",
> instead of
Could anybody comment on this?
On Dec 6, 2007 12:33 PM, Gaetan de Menten <[EMAIL PROTECTED]> wrote:
> Hi list,
>
> Does anybody know if there is a better way than:
> var statics = qx.Class.getByName(this.classname)
>
> to access the static members/class variables of the "current" (most
> specializ
moe schrieb:
> hi,
>
> please see the attached screenshots.
>
> misalign.jpg shows the feedreader demo app at standard font-size.
> the text is not properly aligned vertically (most visible in the
> right pane). i had this problem in all qooxdoo apps that i've seen
> so far.
>
> resize.jpg shows wh
Hi Hugh,
> I'm using a qx.ui.tree.Tree with qx.ui.tree.TreeFolder for the tree in
> our project. I don't want to change to virtual tree (just yet!).
>
> I have a simple requirement: to change the background colour of a label
> in some tree rows to indicate a special state for those rows. However,
>
Hi Hugh,
thanks for your memory leak investigations. I have taken a closer look
at the issue, when disposed objects remain in the Color-, Border-, or
Fontmanager. Sebastian suggested to just call the value manager's
connect method with a "null" value in the widget dispose method. Since
"null"
33 matches
Mail list logo