Re: [qooxdoo-devel] How to change source and build folders?

2011-12-22 Thread Tristan Koch
Hi Aleksandy, to my knowledge, this is not something meant to be configurable. The "source" folder and all its subdirectories are referenced literally in the generator's default configuration. You could overwrite all those jobs, but that seems tedious end error-prone. For an easier solution, c

[qooxdoo-devel] How to change source and build folders?

2011-12-22 Thread aleksandy
Нow do I change config.json in my inline application to move all folders (class, resource, script, translation) inside other folder, for example "js". I need this structure: -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-change-source-and-build-folders-tp7117997p7117997

Re: [qooxdoo-devel] Browser Refresh Event

2011-12-22 Thread Alex Gölkel
Hi Christian, thanks for your help. The window.onbeforeunload does the job. Cheers, Alex -- View this message in context: http://qooxdoo.678.n2.nabble.com/Browser-Refresh-Event-tp7118847p7120903.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] How to change source and build folders?

2011-12-22 Thread aleksandy
up -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-change-source-and-build-folders-tp7117997p7120743.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Write once. Port to many. Ge

Re: [qooxdoo-devel] Browser Refresh Event

2011-12-22 Thread Christian Hagendorn
Hi Alex, no, there is no listener for a refresh. Maybe it's help when you use a command for F5 and save a information about the execution and use the before unload event [1] to do you stuff. Cheers, Chris [1] https://developer.mozilla.org/en/DOM/window.onbeforeunload Am 22.12.2011 15:59, schr

Re: [qooxdoo-devel] How do you find a specific Item in a Store?

2011-12-22 Thread Simon White
Hi I found that I can get a reference to the array as follows but I do not think I should be accessing "$$user_ARMaster" item because that assumes I know the internal structure which should not be necessary in OOP. myARMasterStore.getModel().$$user_ARMaster.toArray() Simon On 22/12/2011 9:

[qooxdoo-devel] Browser Refresh Event

2011-12-22 Thread Alex Gölkel
Hi, is there a event, which is fired when the user refreshes (F5) the browser. I need the event fired, when the browser sends the request, not when the response of the server arrives. Regards Alex -- View this message in context: http://qooxdoo.678.n2.nabble.com/Browser-Refresh-Event-tp7118847p

Re: [qooxdoo-devel] Pinch gesture in desktop application

2011-12-22 Thread odg
Hi Tino, thank you! This worked and i tested it with the feedreader application too. But obviously I can no longer scroll through a scroll container, instead the whole screen scrolls. In the feedreader for example, i can no longer scroll through the feed messages container. I guess this is a h

[qooxdoo-devel] How do you find a specific Item in a Store?

2011-12-22 Thread Simon White
Hi If I understand correctly most interaction with stores and widgets is done through data binding however I would like to know how you find a specific item in a store. For example I have a widget whose default values is stored in a database table. I created a store and loaded that database

Re: [qooxdoo-devel] Which are the possible values for a sepataror?

2011-12-22 Thread Christian Hagendorn
Hi, sorry, I do not understand you question, could you please explain it again? Thanks, Chris Am 22.12.2011 14:29, schrieb xina towner: > I know the main, but can I put a white line for example? or a slimmer > line? > > -- > Gràcies, > > Rubén > --

[qooxdoo-devel] Which are the possible values for a sepataror?

2011-12-22 Thread xina towner
I know the main, but can I put a white line for example? or a slimmer line? -- Gràcies, Rubén -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing ap

Re: [qooxdoo-devel] I need an accordion widget....

2011-12-22 Thread Tino Butz
Hi -"thron7" wrote: - Given the fact that it hasn't been updated in a while you might need to run a 'generate.py migration' on it first, before you can use it with your e.g. 1.6 project. Are you planning to add an Accordion widget to qooxdoo? +1 fo

Re: [qooxdoo-devel] Pinch gesture in desktop application

2011-12-22 Thread Tino Butz
Hi, I have no time to test it, but could you please try to comment the following lines in qx.event.handler.Touch -> defer method : document.addEventListener("touchmove", function(e) { e.preventDefault(); }); Please report back, if that helped. If so, please open a bug. If it

Re: [qooxdoo-devel] remove a listener

2011-12-22 Thread Christian Hagendorn
Hi, When you add a listener with a function as like this: widget.getSelection().addListener("change", loadProduktDetailData); Than you can remove it (when the reference to the added function is the same), like this: widget.getSelection().removeListener("change", loadProduktDetailData); Cheers,

Re: [qooxdoo-devel] remove a listener

2011-12-22 Thread Derrell Lipman
On Thu, Dec 22, 2011 at 07:24, smisonli...@googlemail.com < smisonli...@googlemail.com> wrote: > widget.getSelection().addListener("change", loadProduktDetailData); Your original call provided the context as the third parameter. If you simply moved the anonymous function to a member function cal

Re: [qooxdoo-devel] remove a listener

2011-12-22 Thread smisonli...@googlemail.com
and how can i remove all listeners? i try this widget.getSelection().addListener("change", loadProduktDetailData); the las is a functionname, but it dosent run:( What is wrong? thank you > Hi, > > you can't remove one listener without the reference from function you > try to remove. > Rewrit

Re: [qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread Christian Hagendorn
That's the id you are set by the model creation. Am 22.12.2011 12:57, schrieb smisonli...@googlemail.com: > and how he know my id? > >> Hi, >> >> the selection includes selected model item. Just call the ID method: >> widget.getSelection().getItem(0).getID() >> >> Cheers, >> Chris >> >> Am 22.12.2

Re: [qooxdoo-devel] remove a listener

2011-12-22 Thread Christian Hagendorn
Hi, you can't remove one listener without the reference from function you try to remove. Rewrite your code by using a class method or save the reference from the method and remove this later. Cheers, Chris Am 22.12.2011 12:56, schrieb smisonli...@googlemail.com: > Hi, > > how can i remove a li

Re: [qooxdoo-devel] virtual selectbox selection?

2011-12-22 Thread Christian Hagendorn
Hi it's like I sad in the other question, the selection contains selected model items. You can call all model methods directly. Cheers, Chris Am 22.12.2011 12:18, schrieb smisonli...@googlemail.com: > Hello, > > i can get the values like this > alert(this.widgets["PRODUKTID"].getModel().getItem

Re: [qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread smisonli...@googlemail.com
and how he know my id? > Hi, > > the selection includes selected model item. Just call the ID method: > widget.getSelection().getItem(0).getID() > > Cheers, > Chris > > Am 22.12.2011 11:11, schrieb smisonli...@googlemail.com: >> Hi, >> >> IDs >> >> i need to add, select, and get this id to/from th

[qooxdoo-devel] remove a listener

2011-12-22 Thread smisonli...@googlemail.com
Hi, how can i remove a listener, i have defined like this this.widgets["PRODUKTID"].addListener("change", function(e) { this.loadProduktDetailData(); }, this); thank you ---

Re: [qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread Christian Hagendorn
Hi, the selection includes selected model item. Just call the ID method: widget.getSelection().getItem(0).getID() Cheers, Chris Am 22.12.2011 11:11, schrieb smisonli...@googlemail.com: > Hi, > > IDs > > i need to add, select, and get this id to/from the virtual selectbox > > and how can i get th

[qooxdoo-devel] virtual selectbox selection?

2011-12-22 Thread smisonli...@googlemail.com
Hello, i can get the values like this alert(this.widgets["PRODUKTID"].getModel().getItem(5).getLabel()); but how can i access them on a selection ? alert(this.widgets["PRODUKTID"].getSelection().getModel().get("PRODUKTID")); alert(this.widgets["PRODUKTID"].getSelection().get("PRODUKTID")); noth

Re: [qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread smisonli...@googlemail.com
Hi, IDs i need to add, select, and get this id to/from the virtual selectbox and how can i get the row to select an item? widget.getSelection().getItem(0).getLabel() i get the label but how i get the row? > Hi, > > what data do you try to save with setUserData? > > Cheers, > Chris > > Am 2

Re: [qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread Christian Hagendorn
Hi, what data do you try to save with setUserData? Cheers, Chris Am 22.12.2011 10:04, schrieb smisonli...@googlemail.com: > Hello , i use a virtual selectbox, like below, but how can i add some > data like the setUserData to a entry , and how can i add the data after > the widgetcreation? > > >

[qooxdoo-devel] Virtual Selectbox using

2011-12-22 Thread smisonli...@googlemail.com
Hello , i use a virtual selectbox, like below, but how can i add some data like the setUserData to a entry , and how can i add the data after the widgetcreation? getProduktSelectbox : function() { var rawData = []; for (var i = 0; i < 1000; i++