You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatetestEvent() : void{throwError("This error will not show up");}
when the click on it the error that will show up will be
An uncaught Exception occurred on "main" thread.
com.tns.NativeScriptException:
Calling js method onTouch failed
which is not all that helpful
the work around
privatetestEvent() : void{try{throwError("This error will show up");}catch(e){console.log((<Error>e).message);
}}
The text was updated successfully, but these errors were encountered:
NickIliev
changed the title
Lack of descriptive errors when view event fails (actual error not showing up)
Show descriptive errors when view event fails (actual error not showing up)
Feb 20, 2017
Testing on android 6.01 (pure) Moto X Play
[ro.build.version.sdk]: [23]
say you have in your template
and in your code the method
when the click on it the error that will show up will be
which is not all that helpful
the work around
The text was updated successfully, but these errors were encountered: