Hi Alexander,

there are several ways for this.

The easiest way would be, to add a Listener to you container and prevent the 
default behaviour.

Just like

.addListener("touchstart", function(e) {
        e.preventDefault();
        e.stopPropagation();
},this);


You may also try to add this listener to "touchmove" event.

Greetz Christopher


Am 13.05.2013 um 17:24 schrieb Alexander Voronin:

> Hi, list!
> 
> I have mobile application that uses qx.ui.mobile.container.Scroll with 
> qx.ui.mobile.embed.Html content inside.  html content may contain various 
> elements and some of them uses iScroll (because of mobile safari 
> bug-o-feature on div scrolling). When I scroll div elements with iScroll 
> capability in such kind of content they scrolled with main content also. It's 
> usable but annoying. So the question is - can I somehow disable event UI 
> processing on selected html elements inside qx.ui.mobile.embed.Html  content?
> 
> Thanks in advance.
> 
> -- 
> когда я опустился на самое дно, снизу мне постучали..
> ------------------------------------------------------------------------------
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and 
> their applications. This 200-page book is written by three acclaimed 
> leaders in the field. The early access version is available now. 
> Download your free book today! 
> http://p.sf.net/sfu/neotech_d2d_may_______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to