Hi Team,
we are using Angular JS (Angular 1.6.9) with your library, we are building a list of notification and under the notification content,we have link where we want to attach the click event, we dont want to attach click event on notification itself, somehow click event is not being attached to link.
This line <span><a ng-click="operation(data)" href="javascript:void(0);">{{data.opName}}</a></span>
is not working
<div ng-repeat="data in datalist" >
<jqx-notification jqx-create="data.settingsObj"
jqx-settings="data.settingsObj"
jqx-on-close="dismissHandler($event)">
<div class='row' style='overflow:hidden !important; padding:0px !important;'>
<div class='col-xs-12'>
<span>{{data.text}}</span>
<span><a ng-click="operation(data)" href="javascript:void(0);">{{data.opName}}</a></span>
</div>
</div>
</jqx-notification>
</div>