Re: [qooxdoo-devel] Firebug and caught exception in qx.bom.client.Plugin (IE11)

2013-10-10 Thread Daniel Wagner
Hi Peter, we try to avoid browser/engine checks whenever possible, especially in the environment detection classes, because they're fairly unreliable. For example, IE 11 Preview no longer includes IE in its user agent string, identifying itself as a Gecko-engined browser instead (even though

[qooxdoo-devel] button executing a download link

2013-10-10 Thread Micha
Hi, I have a button which when pressed should execute a file download (the browser open a filebrowser to save the file). I do this with a window.open(url) call in the execute event. This works but how can I react on errors on the server side, for example showing a message if the file as not

Re: [qooxdoo-devel] button executing a download link

2013-10-10 Thread Baskar Vignesh
Hi Micha, You can use hidden iframe for this purpose... Set iframe src to file url on button click event. and please refer following url for catching errors in iframe http://stackoverflow.com/questions/3705083/how-can-i-handle-errors-in-loading-an-iframe *Thanks Regards,* Baskar.M

Re: [qooxdoo-devel] Firebug and caught exception in qx.bom.client.Plugin (IE11)

2013-10-10 Thread Peter Schneider
Hi Peter, Hi Daniel, we try to avoid browser/engine checks whenever possible, especially in the environment detection classes, because they're fairly unreliable. Yeah I know. And that's something I don't want to maintain myself, therefore I am very thankful ;) For example, IE 11

[qooxdoo-devel] VirtualSelectBox that displays calculated labed

2013-10-10 Thread slah
Hello, I've a data containing first name and last name in separated fields, I want to display the data in a VirtualSelectBox and let my users see a calculated field fname + + lname as entries in the list. The problem is that setLabelPath accepts only one entry. Is that possible without

Re: [qooxdoo-devel] Let the browser save the passwords

2013-10-10 Thread schlagges
Hey Varol, thanks for your input. It seems like this is the correct way. Here's my solution (Works in IE, FF, Safari, Opera but NOT Chrome) Using your derived class was the first step. Second is to derive qx.ui.form.AbstractField: qx.Class.define(edl.online.widget.home.LoginFormButton,{

Re: [qooxdoo-devel] VirtualSelectBox that displays calculated labed

2013-10-10 Thread rsantiagopaz
try this http://tinyurl.com/m6esngb -- View this message in context: http://qooxdoo.678.n2.nabble.com/VirtualSelectBox-that-displays-calculated-labed-tp7584749p7584751.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] VirtualSelectBox that displays calculated labed

2013-10-10 Thread slah
Hello, thank you very much it works like a charm. rsantiagopaz wrote try this http://tinyurl.com/m6esngb -- View this message in context: http://qooxdoo.678.n2.nabble.com/VirtualSelectBox-that-displays-calculated-labed-tp7584749p7584752.html Sent from the qooxdoo mailing list archive at

[qooxdoo-devel] qx mobile: enable to use selectBox inside popup window

2013-10-10 Thread slah
Hello, I'm struggling to make SelectBox show option when it's displayed in a popup window. Here's an example: http://tinyurl.com/oo2zbgp when you display the popup and try to select Language the list didn't show options, but when you tap the close popup button then you can see options. Is it a