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?
Worked it out myself:
$(document).ready(function () { $('#InstrumentListGrid').delegate('.ui-iggrid-activerow', 'dblclick', function (e) { var row = $('#InstrumentListGrid').igGridSelection('selectedRow'); var dataview = $('#InstrumentListGrid').data('igGrid').dataSource.dataView(); var cellValue = dataview[row.index]["ID"]; var address = "@Url.Action("Edit")" + "/" + cellValue; window.location = address; }); })
Hi danenatoli,
I tried your solution and it worked great for me too. I want to understand the code a little more though.
Could you elaborate on these 2 lines? Is this syntax documented somewhere I can read up on - especially "ui-iggrid-activerow"?
$('#InstrumentListGrid').delegate('.ui-iggrid-activerow', 'dblclick', function (e) {
var dataview = $('#InstrumentListGrid').data('igGrid').dataSource.dataView();
Thanks,
John
Hello Dane,
I am following up to see if this matter is resolved.
Please let me know if I may be of further assistance with this matter.
Sincerely,Mike P.Developer Support EngineerInfragistics, Inc.www.infragistics.com