Re: [qooxdoo-devel] missing destruct definitions again

2010-03-18 Thread MartinWittemann
Hello Daniel, Daniel Hirtzbruch wrote: I found another destruct definition missing in the framework: Missing destruct definition for '_buttonRow' in qx.ui.form.renderer.Single[undefined]: qx.ui.container.Composite[undefined I think I can't dispose this one by myself - can I? Thats

Re: [qooxdoo-devel] predefined modal dialogs

2010-03-18 Thread panyasan
Hello Huseyin, thank you for your interest in the contribution, I am really happy someone is actually using it. The problem with the shortcut commands is that they have to be hardcoded into the 'dialog' namspace object. There is no way (that I know of) that when loading a class file, some

Re: [qooxdoo-devel] Determine selected TabView page

2010-03-18 Thread thron7
Short of switching back to a more obvious (in my mind) API, I think this problem has to be solved with lots of documentation. As I was trying to help solve Mathew's problem a couple days ago, I looked at the changeSelection event declaration, the fireDataEvent() method call (which,

Re: [qooxdoo-devel] predefined modal dialogs

2010-03-18 Thread hkalyoncu
thanks for the insight i can say that then this dialog.Dialog.init() call is missing in the trunk demo. wish there was a something like wiki for the contribs. regards huseyin -- View this message in context: http://n2.nabble.com/predefined-modal-dialogs-tp4750559p4755354.html Sent from the

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread thron7
Hum, this is indeed strange. Only thing that comes to my mind quickly is add alert() to the method, e.g. alert(url) just before creating req, and try the constructed url in a separate browser window by hand, see what happens. Maybe IE needs a server part at the url? (Actually, I would expect

Re: [qooxdoo-devel] predefined modal dialogs

2010-03-18 Thread panyasan
Thanks for alerting me to this. Fixed it in the trunk and tested the demo with FF, Safari and Chrome. Would be happy about tests in other browsers. Thanks, C. -- View this message in context: http://n2.nabble.com/predefined-modal-dialogs-tp4750559p4755478.html Sent from the qooxdoo mailing

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Joe Noon
_loadRowCount: function ()        {            var url = /dns_zone_count.php;            var req = new qx.io.remote.Request(url, GET, application/json);            req.addListener(completed, this._onRowCountCompleted, this);            alert(url);            req.send();        }, I'm

Re: [qooxdoo-devel] selection in qx.ui.table.Table with model qx.ui.table.remote can be wrong

2010-03-18 Thread Alexander Steitz
Hi Michael, On Wednesday March 17 2010 12:55:34 Michael_ wrote: Suppose the following Szenario: We have a Database Table with 3 columns. 1. Lastname 2. Firstname 3. Zipcode Now I open a Query (qx.ui.table.Table with remote Table Model) ordered by Lastname with columns

[qooxdoo-devel] Tree Column - image widget

2010-03-18 Thread Roberto Frisina
Hi all, I've a question about Tree Column (qx.ui.tree.Tree) image widget. I've insert an images widget on the qx.ui.tree.TreeFolder. Here an example: if ( condition ) { var img = new qx.ui.basic.Image(icon/16/status/dialog-information.png); treeItem.addWidget(img); } else {

Re: [qooxdoo-devel] predefined modal dialogs

2010-03-18 Thread Derrell Lipman
On Thu, Mar 18, 2010 at 04:33, panyasan i...@bibliograph.org wrote: How it works in the trunk is that you have to call the static method dialog.Dialog.init() to make the shortcut commands available. I wish there was another way - maybe someone has an idea. Christian, are you aware of the

Re: [qooxdoo-devel] predefined modal dialogs

2010-03-18 Thread panyasan
No, I wasn't. Cool. This might be exactly what I was looking for. Will test it! Thanks, Christian -- View this message in context: http://n2.nabble.com/predefined-modal-dialogs-tp4750559p4755820.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Determine selected TabView page

2010-03-18 Thread Derrell Lipman
On Thu, Mar 18, 2010 at 04:46, thron7 thomas.herchenroe...@1und1.de wrote: Short of switching back to a more obvious (in my mind) API, I think this problem has to be solved with lots of documentation. As I was trying to help solve Mathew's problem a couple days ago, I looked at the

Re: [qooxdoo-devel] Tree Column - image widget

2010-03-18 Thread Christian Schmidt
Hi Roberto, ff you only try to change the image, you can use the setSource [1] method for that. Or do you also try to switch dynamically between Spacer and Image? Cheers, Chris [1] http://demo.qooxdoo.org/current/apiviewer/#qx.ui.basic.Image~setSource Am 18.03.2010 11:18, schrieb Roberto

Re: [qooxdoo-devel] New Contribution: Dialog widgets

2010-03-18 Thread Peter Schneider
Hi, I've found your contribution recently and checked the demo. Everything looks good to me, except for one thing: The dialogs are modal by placing a blocker element over the main application, but the tab-selection is still working on the main dialog. What I mean is shown in the following

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Christian Schmidt
Does this solve your issue? Otherwise, could you please add a listener to changeState and log the state changes. What is you last state? Cheers, Chris Am 18.03.2010 10:36, schrieb Joe Noon: _loadRowCount: function () { var url = /dns_zone_count.php; var req =

[qooxdoo-devel] library translation

2010-03-18 Thread hkalyoncu
hello what should be the procedure for included libraries in translation process? simple generate.py translation command does not include translations for the included libraries. regards huseyin -- View this message in context: http://n2.nabble.com/library-translation-tp4756389p4756389.html

Re: [qooxdoo-devel] New Contribution: Dialog widgets

2010-03-18 Thread panyasan
Thanks Peter, that's right, this behavior is buggy. I never looked into focus handling, maybe someone versed in this area can give a hint which are the API methods that need to be used to prevent the issues described by Peter? In any case, can you open a bug for this?

Re: [qooxdoo-devel] library translation

2010-03-18 Thread Christian Schmidt
Hi Huseyin, please make sure, that the LOCALES macro in your config.json contain all desired languages, before you run generate.py translate. Fore more details, have a look at [1]. Cheers, Chris [1] http://qooxdoo.org/documentation/1.0/internationalization#extract_the_messages Am 18.03.2010

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Rod K
Joe Noon wrote: _loadRowCount: function () { var url = /dns_zone_count.php; var req = new qx.io.remote.Request(url, GET, application/json); req.addListener(completed, this._onRowCountCompleted, this); alert(url); req.send();

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Rod K
thron7 wrote: Hum, this is indeed strange. Only thing that comes to my mind quickly is add alert() to the method, e.g. alert(url) just before creating req, and try the constructed url in a separate browser window by hand, see what happens. Maybe IE needs a server part at the url? (Actually,

Re: [qooxdoo-devel] library translation

2010-03-18 Thread hkalyoncu
thanks for the reply yes i have no problem with that. i have already other translations in the application source. but the translations from included library source are missing in the default translation file. do i have to run translation command for the library separately? regards huseyin --

Re: [qooxdoo-devel] library translation

2010-03-18 Thread Christian Schmidt
Sorry, I miss understood library, I thought you meant qooxdoo with it. I think you mean a contribution with the word library? Which contribution do you use? It seems to me that the contribution doesn't use the translation feature, because the translation should also work with contributions,

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Rod K
Rod K wrote: thron7 wrote: Hum, this is indeed strange. Only thing that comes to my mind quickly is add alert() to the method, e.g. alert(url) just before creating req, and try the constructed url in a separate browser window by hand, see what happens. Maybe IE needs a server part at

Re: [qooxdoo-devel] Tree Column - image widget

2010-03-18 Thread Roberto Frisina
Hi Christian, thanks, but I've to switch dynamically between Spacer and Image and I've only the TreeFolder variable. Thanks, Roberto Christian Schmidt ha scritto: Hi Roberto, ff you only try to change the image, you can use the setSource [1] method for that. Or do you also try to

[qooxdoo-devel] New news.qooxdoo.org platform

2010-03-18 Thread thron7
Hi all, we moved our blog news.qooxdoo.org to a new platform. The DNS change is trickeling around the worl right now, so chances are that it takes a while before you actually hit the new server when you enter the news URL. You shouldn't see much difference, only that it is faster and the

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Jim Hunter
I use relative URL's exclusively and with no problems in any browser. A 'site' can't have multiple domain names, that would make them multiple sites and you would need to follow all of the cross site scripting rules to make calls between them with one of the requirements being that you have to use

Re: [qooxdoo-devel] Tree Column - image widget

2010-03-18 Thread Christian Schmidt
Hi Roberto, ok, it seems to me there is no method to remove the added Image or Spacer from the TreeFolder. You can implement this method in own class, you need only to extend the TreeFoder and implement the method like: removeWidget : function(widget) { this._remove(widget); }, Now you

Re: [qooxdoo-devel] qx.io.remote.Request not being sent from IE

2010-03-18 Thread Rod K
Jim Hunter wrote: I use relative URL's exclusively and with no problems in any browser. A 'site' can't have multiple domain names, that would make them multiple sites and you would need to follow all of the cross site scripting rules to make calls between them with one of the requirements

[qooxdoo-devel] Table keyup?

2010-03-18 Thread smisonl...@googlemail.com
Hello, i have a table and when i click a cell i get the row data like in the example below. Now i want to get the row too when i go up and down via key arrows. i try the keyup like below but how can i get the actual row number to get the selection? i find no getSelected or something like this

Re: [qooxdoo-devel] Table keyup?

2010-03-18 Thread Stefan Meyer
Hello, now i get my row and the id but i cant access any this Element and i cant access the function inside my class:( Thanks for help. Hello, i try now this var tableModel1 = this.tableModel1; this.table1.addListener(keyup, function(e) {

Re: [qooxdoo-devel] library translation

2010-03-18 Thread thron7
thanks for the reply yes i have no problem with that. i have already other translations in the application source. but the translations from included library source are missing in the default translation file. do i have to run translation command for the library separately? Yes, indeed.

Re: [qooxdoo-devel] [english 100%] serialize selectboxes and others?

2010-03-18 Thread Stefan Meyer
Hello, i forgot, i need an ID from the SUerdata returned. Notthe label Hello, i try this code from an example. The normal textfields are ok but when i add the PRODUKTID version i get alwys errors. Why ? is their any real easy serializer like in prototype,jquery,..? Thank you for help.

[qooxdoo-devel] Binding

2010-03-18 Thread smisonl...@googlemail.com
Hello, i test this example but how must the json data bes tructured to work? And what means this? controller3.setLabelPath(name); /* qooxdoo - the new era of web development http://qooxdoo.org Copyright:

Re: [qooxdoo-devel] [english 100%] Re: [english 100%] serialize selectboxes and others?

2010-03-18 Thread smisonl...@googlemail.com
i find a example looks like that controller.addTarget(this.widgets[PRODUKTID], getSelection()[0].PRODUKTID, PRODUKTID, but on my test that dosent work to get a selectbox userdata value PRODUKTID How can i get it? Thanks for answer? Hello, i forgot, i need an ID from the SUerdata

[qooxdoo-devel] get serialize formated data?

2010-03-18 Thread smisonl...@googlemail.com
Hello, when i serialize data on a date like this controller.addTarget(this.widgets[date], value, date, true); how can i format it befor the data is serialize and send? Thank you for help