jQWidgets Forums

jQuery UI Widgets Forums Grid checkbox column

This topic contains 1 reply, has 2 voices, and was last updated by  Keshavan 12 years, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • checkbox column #18640

    rama
    Member

    I have a checkbox column in my grid. When I click on the checkbox it takes2-3 seconds before it changes state. I can see significant delay when I click on it. The examples on the site doesnt have it. I put a custom header which is a checkbox. I see there are properties for animationShowDelay. Wonder if it has some default value on the rows

    checkbox column #18642

    Keshavan
    Participant

    Hi,

    I have checkbox in my grid and responds with out any delay, see my pasted code below if it helps,

    { text: ‘Select’, datafield: ‘Active?’, columntype: ‘checkbox’, width: 50,
    // select or unselect rows when the checkbox is checked or unchecked.
    cellendedit: function (event)
    {
    if (event.args.value)
    {
    $(“#jqxgrid”).jqxGrid(‘selectrow’, event.args.rowindex);
    }
    else
    {
    $(“#jqxgrid”).jqxGrid(‘unselectrow’, event.args.rowindex);
    }
    }
    },

    Thanks,

    Keshavan

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

You must be logged in to reply to this topic.