Re: [qooxdoo-devel] Celleditor.Selectbox / dynamic editor data

2012-09-18 Thread damiand
Hello again. I think I've found a solution. Check this

Re: [qooxdoo-devel] Celleditor.Selectbox / dynamic editor data

2012-09-13 Thread damiand
Hello, Are there any advancements in the latest qooxdoo version concerning the above required functionality? Thanks, Damianos -- View this message in context: http://qooxdoo.678.n2.nabble.com/Celleditor-Selectbox-dynamic-editor-data-tp3822606p7581337.html Sent from the qooxdoo mailing list ar

Re: [qooxdoo-devel] Change the style of Group Headers in forms

2012-08-21 Thread damiand
Thank you, Daniel. I used a custom renderer, and I've overwritten the addItems method, as in the following excerpt: addItems : function(items, names, title, options, headerOptions) { // add the header if (title != null) { var myHeader = this

[qooxdoo-devel] Change the style of Group Headers in forms

2012-08-08 Thread damiand
Hello. Is it possible to change the style (e.g. italic font instead bold), of group headers in a form? I now that the Form.addGroupHeader method has an options parameter, but I couldn't find any further documentation, or an example. Thanks, Damian -- View this message in context: http://qooxd

[qooxdoo-devel] qx.data.store.Json state stucks to "aborted"

2011-07-01 Thread damiand
Hello, I'm facing a weird qx.data.store.Json behaviour. When I try to load the local.json (the same with the sample at qooxdoo's demos) file from a webserver, the state stucks to "aborted". However, the model is created. When I try to do the same with the following file: {"remarkid" : 2, "topic"

Re: [qooxdoo-devel] Initialize the selection of a RadioButtonGroup

2011-06-03 Thread damiand
Thank you Benjamin, I changed my code, according to your sample, but the problem remains. In the playground the following: var rbg = new qx.ui.form.RadioButtonGroup(); rbg.getRadioGroup().setAllowEmptySelection(true); var rb1 = new qx.ui.form.RadioButton("Yes"); rb1.setModel(qx.data.marshal.Json.

[qooxdoo-devel] Initialize the selection of a RadioButtonGroup

2011-06-03 Thread damiand
Hello again, My first encounter with the qooxdoo community was very positive. Martin gave me two very helpful hints. Now, I'm facing the problem of setting the selection of a RadioButtonGroup to an initial value (taken by a database field, for example). I modified a bit, an example given by Marti

Re: [qooxdoo-devel] Array of objects. Bind a property of an object to an Object controller

2011-05-30 Thread damiand
Hello Martin and thanks for the welcoming. My aim is to create a dynamic form from the json. Arrays looked as a convenient solution for grouping objects of field descriptions and values (and some metadata) and create corresponding form widgets by traversing the array. Do you think of another appro