Hey Guys,
it is possible to replace the click function with ng-click (angularjs)?
For example:
<header data-role="header">
<div data-role="toolbar" data-items='[
{ type: "button", showText: "overflow", id: "flag", text: "Flag", icon: "toprated", click: function(e){ alert("123") } },
{ type: "button", showText: "overflow", id: "flag2", text: "Flag2", icon: "toprated", ng-click: function(e){ alert("123") } },
]'>
</div>
</header>
Greeting