[qooxdoo-devel] embedded PDF is always on top

2010-01-18 Thread Tobias Koller (GERMO GmbH)
Hi, I created an Iframe and loaded a PDF-File. When I open f.e. a modal window it's always behind the PDF-Plugin. The PDF-plugin is always ontop of everything. Are there any workarounds for that? Thanks Tobias --

Re: [qooxdoo-devel] TabView - getSelected is not a function

2010-01-18 Thread Fritz Zaucker
Use getSelection()[0] Cheers, Fritz On Mon, 18 Jan 2010, Sempre wrote: > > Hi, > > i've tried to get the current selected page in the focusin-/focusout-event > on a TabView. > > Here is the code: > > qx.Class.define("mase.demo.TabView", > { > extend : qx.ui.tabview.TabView, > > > con

[qooxdoo-devel] TabView - getSelected is not a function

2010-01-18 Thread Sempre
Hi, i've tried to get the current selected page in the focusin-/focusout-event on a TabView. Here is the code: qx.Class.define("mase.demo.TabView", { extend : qx.ui.tabview.TabView, construct : function() { this.base(arguments);

Re: [qooxdoo-devel] Advice for migration large legacy project

2010-01-18 Thread Fritz Zaucker
Hi Simon, On Mon, 18 Jan 2010, waysoftheearth wrote: Thanks for your reply. Yes, I realise 1.0 is out. I have three other Qx 0.8 web-clients in a suite of tools, so my first goal is to bring this (biggest) legacy app into line with the others. We may or may not migrate them all to Qx 1.0 fro

Re: [qooxdoo-devel] Advice for migration large legacy project

2010-01-18 Thread waysoftheearth
Hi Fritz, Thanks for your reply. Yes, I realise 1.0 is out. I have three other Qx 0.8 web-clients in a suite of tools, so my first goal is to bring this (biggest) legacy app into line with the others. We may or may not migrate them all to Qx 1.0 from there. Yes, I used the migration script --

Re: [qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Petr Kobalíček
I'm also voting for removing this extension, it makes qooxdoo-json-rpc incompatible with everything. On Mon, Jan 18, 2010 at 1:32 PM, Fabian Jakobs wrote: > Hi, > > Yesterday I've landed a commit, which adds native JSON support to > qooxdoo. There is a new class qx.lang.Json, which has exactly th

Re: [qooxdoo-devel] New Java-RPC implem

2010-01-18 Thread Petr Kobalíček
Hi Jean, Is it possible to specify some schema and serialize / deserialize data based on this schema? I'm currently developing own json-rpc implementation, because there is no json-lib that allows this. I based code on the older rpc (author granted to use apache licence for final product), but it

Re: [qooxdoo-devel] New Java-RPC implem

2010-01-18 Thread Derrell Lipman
On Mon, Jan 18, 2010 at 04:21, Jean-Baptiste BRIAUD -- Novlog < j-b.bri...@novlog.com> wrote: > Hi, > > Few words on our new Java-RPC implementation : > We are in the process of delivering a qooxdoo contrib for a new Java-RPC. > The contrib name is not set. > Should it be "Java RPC 2" ? > We're g

Re: [qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Helder Magalhães
Hi everyone, Fabian Jakobs wrote: > > Yesterday I've landed a commit, which adds native JSON support to > qooxdoo. [...] This is great news because parsing > and serializing JSON is a lot faster on those browsers. > Cool! :-) Fabian Jakobs wrote: > > BUT > we cannot deprecate the old i

Re: [qooxdoo-devel] Browser Problem: tree in window?

2010-01-18 Thread Fink, Andreas
Hi, seems to be a problem with the "click" event. If you change your listeners to "execute" it works. Regards, Andreas > -Ursprüngliche Nachricht- > Von: phill54 [mailto:phil...@web.de] > Gesendet: Montag, 18. Januar 2010 17:13 > An: qooxdoo-devel@lists.sourceforge.net > Betreff: Re: [q

Re: [qooxdoo-devel] Error in App

2010-01-18 Thread phill54
I was just thinking you might want to take a closer look at the api: you can turn off/on display for inherited methods and also for property-generated methods. remember that the SelectBox object has "selection" as it's property so you can access this property by using the automatically generated s

Re: [qooxdoo-devel] Browser Problem: tree in window?

2010-01-18 Thread phill54
you're welcome. is there any work-around for the meanwhile? :-/ (except using ie8 / chrome) Christian Schmidt wrote: > > Hi phill54, > > thank you for reporting. I opened a bug report for this: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=3345 > > Cheers, > Chris > -- View this message in

Re: [qooxdoo-devel] Error in App

2010-01-18 Thread phill54
Hi Thomas, if this.operator is an instance of qx.ui.form.SelectBox you'll receive the current selection by this.operator.getSelection() getSelection will return an array of widgets. maybe this.operator.getSelection()[0].getValue() is what you've been looking for. best regards, phill54 Andrew

Re: [qooxdoo-devel] Non-qooxdoo JS file in contribution

2010-01-18 Thread thron7
On 01/18/2010 03:36 PM, panyasan wrote: > > Hello Thomas, > > > thron7-2 wrote: >> >> >>> 2) Also, as before, there is no way to point to the contribution's >>> resource >>> directory, >> >> yes, there is; just use the path to the external library!? "add-script" >> just takes the path to the

Re: [qooxdoo-devel] Error in App

2010-01-18 Thread Andrew Thomas
that this.operator is actually a selectbox. Should I be using something other than getValue() like in .Net I would use selectedValue On Mon, Jan 18, 2010 at 4:19 AM, Christian Schmidt < schmidt.christ...@1und1.de> wrote: > Hi Andrew, > > I seems to me that "this.operator.getValue()" doesn't exist

Re: [qooxdoo-devel] Browser Problem: tree in window?

2010-01-18 Thread Christian Schmidt
Hi phill54, thank you for reporting. I opened a bug report for this: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3345 Cheers, Chris Am 18.01.2010 15:40, schrieb phill54: > hi everyone, > > I'm having a toolbar containing buttons and menus. the buttons in the menus > have listeners on them openin

[qooxdoo-devel] Browser Problem: tree in window?

2010-01-18 Thread phill54
hi everyone, I'm having a toolbar containing buttons and menus. the buttons in the menus have listeners on them opening certain windows. that works just fine most of the time except in firefox 3.5: after opening a certain window for the first time, the scripts won't let me open any further window

Re: [qooxdoo-devel] Non-qooxdoo JS file in contribution

2010-01-18 Thread panyasan
Hello Thomas, thron7-2 wrote: > > >> 2) Also, as before, there is no way to point to the contribution's >> resource >> directory, > > yes, there is; just use the path to the external library!? "add-script" > just takes the path to the external lib, it is not concerned with > qooxdoo "librari

Re: [qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Tobias Oetiker
Hi Fabian, Today Fabian Jakobs wrote: > Hi, > > Yesterday I've landed a commit, which adds native JSON support to > qooxdoo. There is a new class qx.lang.Json, which has exactly the same > interface as the JSON object defined in the EcmaScript 5 specification >

Re: [qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Derrell Lipman
On Mon, Jan 18, 2010 at 07:32, Fabian Jakobs wrote: > Since the RPC code is the only code depending on this feature I would > like to know from the RPC authors: > > 1. Wouldn't dates represented as ISO strings be sufficient? Do you think > we need a special date extension? > 2. If we find a stand

Re: [qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Jean-Baptiste BRIAUD -- Novlog
On Jan 18, 2010, at 13:32 , Fabian Jakobs wrote: > Hi, > > Yesterday I've landed a commit, which adds native JSON support to > qooxdoo. There is a new class qx.lang.Json, which has exactly the same > interface as the JSON object defined in the EcmaScript 5 specification >

Re: [qooxdoo-devel] Non-qooxdoo JS file in contribution

2010-01-18 Thread thron7
On 01/16/2010 07:35 PM, panyasan wrote: > > Hi, here are further experiences. It seems to me that the loading action > triggered by "add-script" key still needs some polishing: > > 1) I had to put it into the config.json of the *contribution demo* in order > to be picked up at all. Expected be

Re: [qooxdoo-devel] Problem migrating 0.7.4pre app

2010-01-18 Thread thron7
Bruce, >I'm trying to migrate my 0.7.4pre app to 1.0, and per [1] I've > started by first migrating it to 0.8.3., following the steps in [2]. I > should also mention that the 0.7.4pre app was in a non-standard > directory structure - something I'm trying to fix by making the 0.8.3 > version f

Re: [qooxdoo-devel] qx application -> Adobe AIR

2010-01-18 Thread Christian Schmidt
Hi Jean-Baptiste, >> Does it mean in a near future we would be able to run qooxdoo application in >> the AIR runtime or transform it to an AIR application ? >> I've no idea of the complexity of the task, but an automatic transformation >> from qx application to AIR application would be a great v

[qooxdoo-devel] RPC: We need a standard compliant way to serialize dates

2010-01-18 Thread Fabian Jakobs
Hi, Yesterday I've landed a commit, which adds native JSON support to qooxdoo. There is a new class qx.lang.Json, which has exactly the same interface as the JSON object defined in the EcmaScript 5 specification . All new browsers like Firefo

Re: [qooxdoo-devel] Application testing

2010-01-18 Thread Christian Schmidt
Hi Marco, > I mean is there a way to initialize the application and then do tests with > it? > In my application main() method i set a property like this.foo, then in > tests i try to access it with qx.core.Init.getApplication().foo but it's > undefined. > Yes, that's correct, because the Test

Re: [qooxdoo-devel] qooxdoo and TinyMCE

2010-01-18 Thread benco
Hi Julian, The best way (in my opinion, maybe there are some better ways to include it) is by using an HTML embed widget. You also can use a dummy textarea form widget to make it work with a form data controller for instance if you plan to use the powerful databinding features. It's a bit hacky b

[qooxdoo-devel] qooxdoo and TinyMCE

2010-01-18 Thread julian-w
Hello to everybody, I have a little problem: I would use qooxdoo (v1) with TinyMCE (3.2.7), but I don't know how to do it. I always get error's. Can anybody help me or post some code. I only need to insert TinyMCE into a from an read the created HTML-Code. I hope you understand my English ;-) G

Re: [qooxdoo-devel] Application testing

2010-01-18 Thread mck89
I mean is there a way to initialize the application and then do tests with it? In my application main() method i set a property like this.foo, then in tests i try to access it with qx.core.Init.getApplication().foo but it's undefined. I want to do tests when the application is already initialized

Re: [qooxdoo-devel] Key listeners

2010-01-18 Thread Christian Schmidt
Hi Jean-Noel, then I would prefer to use a Command which listen to the ENTER key and a form manager [1] which validates the user input before you submit the request. Cheers, Chris [1] http://qooxdoo.org/documentation/1.0/ui_form_handling Am 18.01.2010 03:22, schrieb Jean-Noël Rivasseau: Yes

Re: [qooxdoo-devel] Error in App

2010-01-18 Thread Christian Schmidt
Hi Andrew, I seems to me that "this.operator.getValue()" doesn't exist, could you please check that "this.operator" contains the correct reference to a instance which has the "getValue()" method. Cheers, Chris Am 17.01.2010 22:53, schrieb Andrew Thomas: > I am doing a tutorial to get myself ac

Re: [qooxdoo-devel] "Unknown global symbol referenced" despite #ignore()

2010-01-18 Thread Christian Schmidt
Hi Christian, > Doesn't the #ignore() hint take wildcards? Should I open a bug for this? > You are right, the #ignore() doesn't support wildcards. You can open a enhancement request for this feature. Cheers, Chris -- Christian Schmidt Software Entwickler 1&1 Internet AG - Web Technologies

Re: [qooxdoo-devel] Application testing

2010-01-18 Thread Christian Schmidt
Hi Marco, welcome to the Community! Could you please give me a short example (or code snippet) what you mean with: "... but i need to do tests inside my application environment. ..." If you try to create the testrunner with the unit test, you only need the "generate.py test" job. The "generate

Re: [qooxdoo-devel] using Request with mod_wsgi

2010-01-18 Thread Daniel Wagner
Hi, first of all, sorry for the late answer. Looks like your message took a while to reach the list. Setting the request's crossDomain property to true means the Script transport (qx.io.remote.transport.Script) will be used. In that case, the request will have a parameter "_ScriptTransport_id"

[qooxdoo-devel] New Java-RPC implem

2010-01-18 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, Few words on our new Java-RPC implementation : We are in the process of delivering a qooxdoo contrib for a new Java-RPC. The contrib name is not set. Should it be "Java RPC 2" ? * Allow extra params to be added or removed on the servlet (or a filter), before reaching the Controller. You c

Re: [qooxdoo-devel] login/authentication request

2010-01-18 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, We had exactly the same needs and the same will to have a stateless server. In fact, I could have written this email :-) Why do you want to send a separate HTTP header ? Fortunately, by using RPC, tghings are simpler because you are at higher level. Unfortunately, you don't have (can't) acces

Re: [qooxdoo-devel] Layout problem with splitpane and table

2010-01-18 Thread Fritz Zaucker
Hmm, the problem was a missing flex: vbox1.add(splitpane, {flex:1}); solves the issue. Sorry for the noise. Cheers, Fritz On Sat, 16 Jan 2010, Fritz Zaucker wrote: > Hi, > > in the following playground example I am trying to put a splitpane inside a > window and a table inside on part of the

Re: [qooxdoo-devel] Get/Set value from/to selectbox (qooxdoo 1.0)

2010-01-18 Thread Christian Schmidt
Hi Martin, here my example playground example: http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%20%22var%2520selectBox%2520%253D%2520new%2520qx.ui.form.SelectBox%28%29%253B%250Avar%2520listItems%2520%253D%2520%255B%255D%253B%250A%250Afor%2520%28var%2520i%2520%253D%2520100%253B%2520i%25

Re: [qooxdoo-devel] [SPAM] Re: Problems with rendering graphics

2010-01-18 Thread Christian Schmidt
Hi Stefan, that's strange. Please make sure that the zoom is rested (Ctrl + 0), clear your Browser chage and relod the application. Does this solve your issue? Cheers, Chris Am 15.01.2010 10:59, schrieb Stefan Andersson: I forgot to say that it is embedded in the html page! That might chan