Re: [qooxdoo-devel] Static method in property init

2008-06-18 Thread Fabian Jakobs
kanugula schrieb: > Thanks for your reply. > > I tried the following, but still didn't work. The source/build version gives > a warning saying 'require(my.ServerConfig) is auto-detected'. > > Anyway, this is a minor issue. I re-arranged my code and removed static > initializer. > > Thanks. > Kanug

Re: [qooxdoo-devel] Static method in property init

2008-06-17 Thread kanugula
Thanks for your reply. I tried the following, but still didn't work. The source/build version gives a warning saying 'require(my.ServerConfig) is auto-detected'. Anyway, this is a minor issue. I re-arranged my code and removed static initializer. Thanks. Kanugula. /* #require(my.ServerConfig)

Re: [qooxdoo-devel] Static method in property init

2008-06-17 Thread Fabian Jakobs
Hi Kanugula, > Hi, > > Why is this not working? > > qx.Class.define("myGui", > { > extend : myAbstractGui, > > properties : > { > rpcUrl : > { > init : > my.ServerConfig.getServiceUrl()+"?request=delete&system=mySystem", > nullable

[qooxdoo-devel] Static method in property init

2008-06-16 Thread kanugula
Hi, Why is this not working? qx.Class.define("myGui", { extend : myAbstractGui, properties : { rpcUrl : { init : my.ServerConfig.getServiceUrl()+"?request=delete&system=mySystem", nullable : false } },