ios - Webview events not fired -
i using ds.slidemenu
widget, has following view:
<alloy> <view id="containerview"> <view id="leftmenu"> <tableview id="lefttableview" /> </view> <view id="movableview"> <view id="shadowview"> <view id="navview"> <button id="leftbutton" /> </view> <view id="contentview" /> </view> </view> </view> </alloy>
and view display webview following one:
<alloy> <view class="container"> <webview id="webview" url="myremoteurlhere" onload="construct"/> </view> </alloy>
to introduce code of ds.slidemenu does, here's happens when change view:
function rowselect(e) { if (alloy.globals.currentview.id != e.row.customview) { $.ds.contentview.remove(alloy.globals.currentview); currentview = alloy.createcontroller(e.row.customview).getview(); currentview.touchenabled = true; alloy.globals.currentview = currentview; $.ds.contentview.add(currentview); } }
movableview
has addeventlistener
'touchstart', 'touchend', 'touchmove' , sure getting event instead of webview. now, webview loaded without problems, on ios simulator touch event not work. clicking on loaded page, nothing happens.
any hints, please?
the answer willhandletouches webview
property set false
. official documentation:
explicitly specifies if web view handles touches. on ios platform, if web view or of parent views have touch listeners, titanium component intercepts touch events. prevents user interacting native web view components. set flag false disable default behavior. setting property false allows user interact native web view , still honor touch events sent parents. no touch events generated when user interacts web view itself. set flag true if want receive touch events web view , user not need interact web content directly.
so
<webview id="<mywebviewid>" willhandletouches=false url="<myurlhere>"/>
will work expected.
Comments
Post a Comment