Phonegap button does not start due to "singleCursorHandlerTouchEvent -getEditableSupport FASLE"

The phone call button does not start in the latest Android 4.0.3. I get a debug message

"singleCursorHandlerTouchEvent -getEditableSupport FASLE" 

(pay attention to the mistakenly written FALSE), after which the button does not work or does nothing. Button Code

 <div {{action someAction}}>click here</div> 
+2
html5 button cordova touch
May 01 '12 at 14:11
source share
1 answer

A similar problem was here with the same message. This seems to have been resolved by resizing the div. I received the same debug message, but this does not affect my event handlers. It also depends on the device / simulator being tested. For example, this message is displayed on a Samsung Galaxy S2 running ICS 4.0.3, but not displayed on an emulator or Nexus S 4G running the same version of Android. Finally (for me) a message appears for any click on the web view screen. Therefore, this will mean that this is just a debugging message related to the web browsing activity, and not a telephone communication problem.

Do you have event handlers for buttons or are they just href links? I assume that {{action someAction}} will be some kind of handler, for example onclick = "functionName ()". Try connecting an event handler to any of the buttons. Using standard js syntax:

 document.getElementById('ButtonID').addEventListener( 'click', function(){ alert('clicked'); } 
+2
May 22 '12 at 17:21
source share



All Articles