Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-08 Thread frederic
Thanks Alessandro. I can often rewrite code with an "array syntax" but sometimes I must keep eval instruction. What do you think about an enhancement in the compiler to manage exception in optimization ? for example have Javascript "tags" who define a section without optimization ? Alessandro S

Re: [qooxdoo-devel] problem with Variable/String optimizations

2006-12-08 Thread Alessandro Sala
Hi Frederic, I have trouble when compiling with string/variable optimization the following JS code : myClass.myFunction=function(vData){ var test=".getValue()"; alert(vData); alert(eval("vData."+test)); } vData seems the same in eval() function after compiling with opt whereas vData in ale

[qooxdoo-devel] RemoteTableModel

2006-12-08 Thread Tobias Koller (GERMO GmbH)
Hello, are there some examples of the RemoteTableModel? Thanks Tobi - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

[qooxdoo-devel] RemoteTableModel

2006-12-08 Thread Tobias Koller (GERMO GmbH)
Hello, are there some examples of the RemoteTableModel? Thanks Tobi - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & b

[qooxdoo-devel] widgets in tree row structure

2006-12-08 Thread jamescowan
I have been looking at TreeFullControl_2.html and am impressed that you can have different types of widgets in a treerowstructure (e.g a checkbox or a label)). Is it possible to attach an editable TextField to a treerowstructure? What are the limitations? Can you attach a table to a treerowstr

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-08 Thread jamescowan
I do treeFolder.getChildren()[1]; I think the first element of getChildren contains the html rendering of the tree and at element position 1 the child tree folder. I think this is right - it was not clear to me from the api documentation; looking through the treefolder object's properties in f

[qooxdoo-devel] appearance-Theme BackgroundImage

2006-12-08 Thread Tobias Koller (GERMO GmbH)
Hello, I'm customizing the classic.js-File to change the look of my test-application. How can I set the BackgroundImage of a button f.e.? I tried several thins but it doesn't work. Tobias - Take Surveys. Earn

[qooxdoo-devel] problem with Variable/String optimizations

2006-12-08 Thread frederic
Hi ! I have trouble when compiling with string/variable optimization the following JS code : myClass.myFunction=function(vData){ var test=".getValue()"; alert(vData); alert(eval("vData."+test)); } vData seems the same in eval() function after compiling with opt whereas vData in alert(vData) seem

[qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-08 Thread yasu takahashi
Hello, Please help me... I've spend so many days trying to get this work. I have read API and documentation, but could not figure out... I am using classes below: qx.ui.tree.AbstractTreeElement qx.ui.tree.Tree qx.ui.tree.TreeFile qx.ui.tree.TreeFolder and I can get "parent" by getParentFolder()

[qooxdoo-devel] Reminder: Subversion access method changed by Sourceforge

2006-12-08 Thread Andreas Ecker
Hi, just want to make sure that all people currently using the SVN version of qooxdoo switch to the new access method introduced by SourceForge (as Sebastian has already posted a few days ago): From http://sourceforge.net/docman/display_doc.php?docid=2352&group_id=1#1164984642 ( 2006-12

Re: [qooxdoo-devel] Tooltip

2006-12-08 Thread Matthias Reuter
Try var tooltip = new qx.ui.popup.ToolTip ("ö"); That worked in labels for treefolders, so I guess it might work in tooltips as well. If not, I could send a tool I've written to parse html entities to unicode characters. Matthias Hi list,

Re: [qooxdoo-devel] CellRenderer Format

2006-12-08 Thread Dietrich Streifert
Hi Mike, you have to derive your own formatting class from qx.ui.table.DefaultDataCellRenderer and overwrite the the _formatValue method: qx.OO.defineClass("qx.my.ui.table.MyNumberDataCellRenderer", qx.ui.table.DefaultDataCellRenderer, function() { qx.ui.table.DefaultDataCellRenderer.call(th

Re: [qooxdoo-devel] Tooltip

2006-12-08 Thread Alex D.
Probably to parse and replace the "ö" with the characters you want before you provide the text to the tooltip. Hope that helps alex.d Hi list, We are at the moment developing an administration system with the qooxdoo toolkit, which is working like a charm. However I have found one point whe