Radlistview Itemtap Produces "calling Js Method Onitemclick Failed" Error Page
I have a RadListView showing a list of items loaded from server. I want to tap on a single item and go to the detail page. I keep getting the same black error page when I tap anywh
Solution 1:
Looks like the handler does not like arguments for some reason. I was facing the same issue with itemTap
event. So I removed the method arguments:
(itemTap)="onReportItemTap()"
I hope it helps.
Post a Comment for "Radlistview Itemtap Produces "calling Js Method Onitemclick Failed" Error Page"