jQuery UI Widgets Forums Navigation Menu, Context Menu conflict in row double click

This topic contains 1 reply, has 2 voices, and was last updated by  Ivo Zhulev 8 years, 7 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • conflict in row double click #86338

    velseenu@gmail.com
    Participant

    Hi jqwidget team,
    $(“jqxGrid”).on(‘rowdoubleclick’, function (event) {

    the above event was triggered @
    1) user double click the left mouse button,

    2) click left click first and immediately click the right click.

    The second case is point out as bug as from customer side. Can You please give me a solution.

    conflict in row double click #86355

    Ivo Zhulev
    Participant

    Hi velseenu,

    This is the normal behavior of the jqxGrid.
    But if you want this only to happen on dbclick of left key then
    use this instead of the jqxGrid rowDoubleclick event:

    
    $('div[role="row"]').each(function() {
        $(this).on('dblclick',function () {
        	alert(this.id)
        })
    });
    

    Best Regards,
    Ivo

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.