[qooxdoo-devel] call a method from a rpc?

2007-01-25 Thread peperoni
Hi, I make a rpc that updates table data. I want to call a method inside the rpc callback function lieke this: mycall = rpc.callAsync(function(result, ex, id) { if (ex == null) { this.openWindow(); .

[qooxdoo-devel] type of object for number in a listview?

2007-01-24 Thread peperoni
Hi, does somebody know what kind of object is used for a number in listview data? I want to have numbers inside the listview that aren`t sorted as a string. for a stringvalue I do the following: ld.push({ text : { text : result[i][1]}... what should I do with a integer or float value? ld.pus

Re: [qooxdoo-devel] sort mixed types of content inside table column

2007-01-15 Thread peperoni
Hugh Gibson wrote: > > Philipp, > >> I have to different kinds of content in a table column. The first >> part of content is a date. The other part is is a string. >> >> The sort of the table doesnt work correct... >> >> It mixes the content like this > > Looks like you have to create a ne

[qooxdoo-devel] sort mixed types of content inside table column

2007-01-14 Thread peperoni
Hello, I have to different kinds of content in a table column. The first part of content is a date. The other part is is a string. The sort of the table doesnt work correct... It mixes the content like this 12.05.2006 -- no date -- -- no date -- -- no date -- 15.06.2006 14.06.2006 The right

Re: [qooxdoo-devel] Translation doesn`t work

2007-01-13 Thread peperoni
Sebastian Werner wrote: > > Thanks, OK, then this seems to be OK. > > Do you use "this.tr" in your application code? The corresponding lines > must look like: > > label.setHtml(this.tr("Tabelle 1")); etc. > > You must include the ''tr'' command. > > Could you please verify this. Thanks. >

Re: [qooxdoo-devel] Translation doesn`t work

2007-01-11 Thread peperoni
Sebastian Werner wrote: > > Do you use a .po file or do you have created the js file by hand? The > common way is to define a po file instead. > > Have you configured the APPLICATION_LOCALES variable to include both, > "de" and "es"? > > Greetings, > Sebastian > the po files were created. I

[qooxdoo-devel] Translation doesn`t work

2007-01-11 Thread peperoni
Hi, I have configured the Makefile to build the source of my application. The make prozess works fine and I can start my application. I have translated two of the test messages in the po file and made the source. The de.js language file int the source looks like that: qx.Locale.define("js.trans

Re: [qooxdoo-devel] Problems with building 0.6.4

2007-01-11 Thread peperoni
peperoni wrote: > > Hello, > > I had a working 0.6.3 an now try to build a 0.6.4 but it doesnt work. > > I always get the following error: > > this.getComponent() has no properties > > > Has somebody got an idear? > > Greets > > Philipp >

[qooxdoo-devel] Problems with building 0.6.4

2007-01-11 Thread peperoni
Hello, I had a working 0.6.3 an now try to build a 0.6.4 but it doesnt work. I always get the following error: this.getComponent() has no properties Has somebody got an idear? Greets Philipp -- View this message in context: http://www.nabble.com/Problems-with-building-0.6.4-tf2957830.html

Re: [qooxdoo-devel] Problem with qooxdoo update 0.62 -> 0.64

2007-01-09 Thread peperoni
Hi I have solved the problem! I had a small failure in my post. I didn`t upated from 0.6.2 -> 0.6.4 but from 0.61 to 0.63. I installed firebug and it returned the following error: qx.ui.core.ClientDocument.getInstance is not a function .. the same error as described under http://bugz

[qooxdoo-devel] Problem with qooxdoo update 0.62 -> 0.64

2007-01-09 Thread peperoni
Hello, since I made the qooxdoo update from 0.62 to 0.64 I have a problem to start my applications in the sourceversion. I have done the migration with the migration script sucsessfully and the buildversion runs without any problems. But when I try to start the the aplication in the sourceversion

Re: [qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread peperoni
> qx.Proto._loadRowCount = function() { >... >mycall = rpc.callAsync(this._setLoadedRowCount, "getRowCount"); >this._onRowCountLoaded(); > }; > You have to call _onRowCountLoaded when you have the result, not > directly after sending your asynchronous request. When I don call _o

[qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread peperoni
Hello, I tried to make an async remote call. The call is working and answers with the right row count. I can alert the result but I can`t set the _rowCount inside the class with it. I tried it this way in _setLoadedRowCount: qx.OO.defineClass("my.ui.table.DBRemoteTableModel", qx.ui.table.Remote