Re: [qooxdoo-devel] question about mobile list and longtap

2016-07-07 Thread kreimer
hola, me imagino que sabiendo la posición de la selección te basta para saber qué ítem fue seleccionado. (tu guardas la lista 'modelo' con la que alimentaste la lista con setModel, no?) Extraído de la doc de qx.ui.mobile.list.List: list.addListener("changeSelection", function(evt) { alert("

Re: [qooxdoo-devel] question about mobile list and longtap

2016-06-28 Thread kreimer
Hola Santiago, probablemente te sea más conveniente escuchar al changeSelection de la lista. Para posicionar el popup respecto al item correspondiente a la selección, tendrías averiguar la posicion (algun indexOf de la coleccion con la que construiste la lista) y con eso mas los métodos getItemCou

Re: [qooxdoo-devel] cursor on images with scale true

2016-02-24 Thread kreimer
Added some check on getAllStyles() being not null. -- View this message in context: http://qooxdoo.678.n2.nabble.com/cursor-on-images-with-scale-true-tp7588002p7588105.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] cursor on images with scale true

2016-02-24 Thread kreimer
Hello, done! here it is: https://github.com/qooxdoo/qooxdoo/pull/176 Thanks! -- View this message in context: http://qooxdoo.678.n2.nabble.com/cursor-on-images-with-scale-true-tp7588002p7588104.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] cursor on images with scale true

2016-02-23 Thread kreimer
a few lines in the __checkForContentElementReplacement private method: // kreimer var currentStyles = currentContentElement.getAllStyles(); this.info("currentStyles" + currentStyles); for(var prop in currentStyles) { sty

Re: [qooxdoo-devel] cursor on images with scale true

2016-02-18 Thread kreimer
Yes, indeed... e.g backgroundColor is also affected. http://tinyurl.com/jstq429 trying to hack the qx.ui.basic.Image to solve this... but I don't fully understand what _styleSource does... -- View this message in context: http://qooxdoo.678.n2.nabble.com/cursor-on-images-with-scale-true-tp75

[qooxdoo-devel] cursor on images with scale true

2016-02-15 Thread kreimer
Hi, I discover that giving true to the scale property of an qx.ui.basic.Image, then the cursor property seems to be ignored. Here, the playground link: http://tinyurl.com/znvwv86 Cheers! -- View this message in context: http://qooxdoo.678.n2.nabble.com/cursor-on-images-with-scale-true-tp758

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread kreimer
Hi there, here is another workaround, maybe it gives some clue for resolving the bug: http://tinyurl.com/hnfl55v Cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/qx-ui-core-Widget-fadeIn-fadeOut-issue-tp7587961p7587965.html Sent from the qooxdoo mailing list archive

[qooxdoo-devel] qx.util.TimerManager initialTime

2016-01-27 Thread kreimer
Hi. Before hand.. I want to say this is sort of trivial and has little importance (once you have workaround). from the api docs of TimerManager#start... " initialTime Milliseconds before the callback function is called the very first time. If not specified and recurTime is specified, then recurTim

[qooxdoo-devel] MSingleSelectionHandling for non widgets

2016-01-01 Thread kreimer
Hi! I'm implementing a Gallery component with many galleryItems to show. It includes a shortcut bar for navigating randomly through the gallery, and controls for next/previous. It seems natural for me to include MSingleSelectionHandling as the Gallery fits in the selection logic provided. Sadly I

Re: [qooxdoo-devel] Download PDF from inside qooxdoo desktop

2015-12-04 Thread kreimer
I suggest qx.ui.basic.Label with rich : true so you can render a -- View this message in context: http://qooxdoo.678.n2.nabble.com/Download-PDF-from-inside-qooxdoo-desktop-tp7587822p7587824.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Download PDF from inside qooxdoo desktop

2015-12-04 Thread kreimer
Hi, I suggest qx.ui.basic.Label with rich : true so you can render a myPdf . But in order to the browser ask the user to save the pdf as a file (rather than open it), you should indicate this in a http response of the pdf itself Content-Disposition: attachment; filename=myPdf.pdf if your ser

Re: [qooxdoo-devel] Cannot make subclass of qx.ui.table.table. Constructor does not work.

2015-12-01 Thread kreimer
http://tinyurl.com/pluba8s -- View this message in context: http://qooxdoo.678.n2.nabble.com/Cannot-make-subclass-of-qx-ui-table-table-Constructor-does-not-work-tp7587799p7587806.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Cannot make subclass of qx.ui.table.table. Constructor does not work.

2015-12-01 Thread kreimer
try this in the constructor (line 7): this.base(arguments, model); -- View this message in context: http://qooxdoo.678.n2.nabble.com/Cannot-make-subclass-of-qx-ui-table-table-Constructor-does-not-work-tp7587799p7587804.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Qx framework RoadMap ?

2015-11-13 Thread kreimer
Hi, I will never thank enough every qx developer for this beautiful framework(s). I began using qx with the original desktop flavor. The amount of code used and subclassed from this original library is the reason why I do not port my code to the qx.web flavor. My dream is : 1) a strong OO support

Re: [qooxdoo-devel] question about mobile, dialog widget and routing

2015-11-03 Thread kreimer
Well, I guess we both speak spanish.. but let's respect the lingua franca... Mmm, yes, I share the same hesitations... In fact, running the mobile showcase.. you can see the same 'bug (I think it's not really a bug). As an application designer, you have the choice of making this particular

Re: [qooxdoo-devel] question about mobile, dialog widget and routing

2015-11-03 Thread kreimer
Hi! take a look at line 77 of: https://github.com/qooxdoo/qooxdoo/blob/master/application/mobileshowcase/source/class/mobileshowcase/page/Overview.js every time you execute a menuItem in the mobile showcase, you show a page, via the routing configuration in: https://github.com/qooxdoo/qooxdoo/b