I do have a script, which lists some parent- and child-elements and which should start a method, if one of the child-elements is double clicked.
This works on Chrome and Firefox, but doesn't work in IE or Edge:
<select>
<optgroup ng-repeat="(strParent, parents) in parentData.parentlistList | groupBy:'strParent'" label="{{strParent}}">
<option value="{{child}}" ng-repeat="child in parents" ng-dblclick="moveChild(child)">
{{
child.name}}
</option>
</optgroup>
</select>
I tried to change the trigger - but doesn't matter if "ng-dblclick", "ng-click" or something else. It seems that Angular never gets notified about the event.
Other events (including dblClick) on the same page are working as the should, even with IE.
Any ideas?
Thanks
Dirk