Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
575
Get value from selected row on double click
posted

I need to get an ID for a selected row based on the row being double clicked.  I already have the event firing, I just need the way to access the grid data:

    $(document).ready(function () {
        $('#InstrumentListGrid').delegate('.ui-iggrid-activerow', 'dblclick', function (e, args) {
           
            get the ID from the grid somehow


            var url = "@Url.Action("Edit", new { id = id })";
            window.location = url;
        });
    });

How can do this?