Hello,
I have experienced the problem that I am not able to get fired a double click event using the following code:
However, firing a doubleclick event on the whole table body is working. As soon as I add the tr tag in the selection string the event is not properly bound.
As you can see in the attached screenshot jQuery should match the html structure.
Can you tell what I am doing wrong?
Thanks in advance!
I have experienced the problem that I am not able to get fired a double click event using the following code:
$("#md-contentGrid tbody > tr[data-uid]").bind('dblclick', function (e) { alert(); });
However, firing a doubleclick event on the whole table body is working. As soon as I add the tr tag in the selection string the event is not properly bound.
$("#md-contentGrid tbody").bind('dblclick', function (e) { alert(); });
Can you tell what I am doing wrong?
Thanks in advance!