Making dojo dijit layout iOS compatible
I have a complex web application which is based on dijit.layout
. You will find a good example of the structure here (check the examples).
As you can see there is no full page scrolling only scrolling inside th开发者_StackOverflowe layout boxes. All layout areas have overflow:auto
, which means they enable scrolling when the layout areas content is larger than the available area space.
The problem is, iOS devices like iPad/iPhone/iPod touch don't support scrolling inside HTML only for a full page.
Is there any generic way to make a digit.layout application compatible for iOS and other touch devices? For example extend the layout areas depending on the length of the content.
did you already find a solution to this problem? I played around with a combination of dojox.mobile.ScrollableView and dijit.layout but end up having two scrollbars.
精彩评论