Re: [qooxdoo-devel] Developing an application

2010-07-22 Thread Daniel Wagner
Hi Ricardo, you can use the "settings" job key: http://manual.qooxdoo.org/current/pages/tool/generator_config_ref.html#settings Use qx.core.Setting.get() in your application to get the value. http://demo.qooxdoo.org/current/apiviewer/index.html#qx.core.Setting~get Regards, Daniel Ricardo Ferre

Re: [qooxdoo-devel] Question regarding selenium open command

2010-07-22 Thread Daniel Wagner
Hi, qooxdoo table cells are HTML divs and not widgets, so getQxObjectFunction won't work. You could try getting the cell's value using getQxTableValue(tableLocator, "row=3,col=4") This value is used by the cell renderer that creates the button, so it should contain the information about the bu

Re: [qooxdoo-devel] Developing an application

2010-07-22 Thread Ricardo Ferreira
Hi, A big thanks for all of you! It's now working :) Just another question.. I need to create/use a configuration file to store some configurations of the application. I could just use the config.json, but how to retrieve the settings? Like, default language or something..? Thanks once agai

[qooxdoo-devel] List selection and form controller

2010-07-22 Thread Bolik
I'm looking for this example http://demo.qooxdoo.org/1.1.x/demobrowser/index.html#data~FormAndListController.html. I changed SelectBox to List and after all i can't understand, how can i set list selection. Can anybody show me an example? Thanks -- View this message in context: http://qooxdoo.

[qooxdoo-devel] Memory Management best practices in composites

2010-07-22 Thread arnis_andy
I have a "best practices" question. I have created several composite objects that have member widgets. For the the "sub-widgets" I create I use member object references that I make sure to destruct. However, I realized after trying to track down a memory leak I was causing with a List and ListI

Re: [qooxdoo-devel] Table changeVisibility events

2010-07-22 Thread Mengu
Thank you very much for the suggestion. I'll do it. :) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-changeVisibility-events-tp5325098p5325618.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Table changeVisibility events

2010-07-22 Thread Derrell Lipman
2010/7/22 Mengü Kağan > Dear Derrell, > > Thank you very much. This is working good. However this also works if i > manually set the visibility via the qooxdoo code instead of the visibility > changer. Is there any events for it? > Not out of the box, but it's easy to add. You'll want to extend

Re: [qooxdoo-devel] Table changeVisibility events

2010-07-22 Thread Mengü Kağan
Dear Derrell, Thank you very much. This is working good. However this also works if i manually set the visibility via the qooxdoo code instead of the visibility changer. Is there any events for it? Thanks in advance. 2010/7/22 Derrell Lipman > 2010/7/22 Mengü Kağan > >> Hi, >> >> Is there any

Re: [qooxdoo-devel] getSelectables on the tree widget

2010-07-22 Thread Guilherme Aiolfi
Martin, since you are working in the selection manager. There is a behavior I noticed months ago. It's describe in this thread: http://www.mail-archive.com/qooxdoo-devel@lists.sourceforge.net/msg22778.html : I noticed that _styleSelectable is called more than once when selecting/deselecting node

Re: [qooxdoo-devel] Table changeVisibility events

2010-07-22 Thread Derrell Lipman
2010/7/22 Mengü Kağan > Hi, > > Is there any event to listen when a column is marked visible or invisible > via the visibility changer at the top right corner of the table? > The event "visibilityChanged" is fired on the column model. You can listen on this event with code like the following: t

Re: [qooxdoo-devel] Databinding problem: Creating form model stopped working

2010-07-22 Thread panyasan
I can confirm everything works for me with the latest revision. Thank you very much. C. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Databinding-problem-Creating-form-model-stopped-working-tp5314091p5325186.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Table changeVisibility events

2010-07-22 Thread Mengü Kağan
Hi, Is there any event to listen when a column is marked visible or invisible via the visibility changer at the top right corner of the table? Thanks in advance. -- This SF.net email is sponsored by Sprint What will you d

Re: [qooxdoo-devel] Databinding problem: Creating form model stopped working

2010-07-22 Thread MartinWittemann
Hello Christian, I just fixed the bug in the marshaler. The current solution is not parsing the object like your patch, its just copying the reference of the original object to the model. Regards, Martin -- View this message in context: http://qooxdoo.678.n2.nabble.com/Databinding-problem-Creat

Re: [qooxdoo-devel] Question regarding selenium open command

2010-07-22 Thread Loredana Loredana
Is there a way to use "getQxObjectFunction" to check if a button from a table cell is enabled or disabled? I succeeded to check on other buttons, but i was not able to check a button that is inside a cell because i don't know how to get that button's locator. When I click the button I use qxTableCl