In grid i want select a row and edit it in another page(href link).the EDIT link in outside the grid.
currently im using following code to row select.but its only working for keyboard navigation not for mouse select.how do i enable mouse select and pass row index to outside edit link onclick event.
$(“#jqxgrid”).jqxGrid(
{ width : ‘100%’,
source: dataadapter,
selectionmode: ‘singlerow’,
altrows: true,
theme: theme,
filterable: true,
autoheight: true,
pageable: true,
columnsresize: true,
//virtualmode: true,
pagesizeoptions: [’10’, ’15’, ’20’],
pagesize:20,
sortable: true,
ready: function () {
//$(“#jqxgrid”).jqxGrid(‘sortby’, ‘ObjectId’, ‘asc’);
//$(“#jqxgrid”).jqxGrid(‘selectionmode’, ‘singlerow’);
$(“#jqxgrid”).jqxGrid(‘selectrow’, 0);
},
rendergridrows: function () {
return dataadapter.records;
},
columns: [
…….continue