I am using grid cells on celldoubleclick to open drill down windows which works great. The problem is after closing the window the mouse select is selecting all data from were your mouse started by the celldoubleclick to the current position. Everything is in a select mode until I click to end the selection. Is there anyway to end the selection before the new window is opened?
$(jqxgrid).on(“celldoubleclick”, function (event) {
var column = event.args.column;
var rowindex = event.args.rowindex;
var columnindex = event.args.columnindex;
if (column.text == “ID” ) {
var ID = $(jqxgrid).jqxGrid(‘getcellvalue’, rowindex, “ID”);
window.open(“../UI/window.php?ID=” + ID);
}
});