iframe view scrolling issue on IOS

Hi,

My iframe scrolling not working when tested on iphone safari. It works well on galaxy tab.
My code below:-

var fullScreenView = {
id:“fullscreen”,

    rows:[
	{
		id:"fullscreenContent",
		view:"iframe",
		 style:"width:100%;height:100%;",
		 scroll:"y",
		 	 
	} 
	 
]

};

Help me please…

library doesn’t provide custom scrolling for iframes, so is content scrollable or not is depends on the native features of iOS ( in case of iOS 5.x - there must be native scroll in such case )

johanbrook.com/browsers/native-m … ing-ios-5/

I dont need custom scrolling, just standard one. Like in html we can have <iframe scrolling=“y” …>
Problem the content just cut off, and I couldnt scroll nor scroll bar appear.

Thanks

This is the native behavior of iOS browser - only top level content has scrolls, inline content doesn’t have scrolls.