| jquery Programming Glossary: row.attrJQ grid, marking row/column as dirty so that can be returned using .getChangedCells('dirty') http://stackoverflow.com/questions/14703082/jq-grid-marking-row-column-as-dirty-so-that-can-be-returned-using-getchangedce    var row input.parents tr   #list4 .jqGrid 'saveRow' row.attr id false          name 'nett_Price' index 'nett_Price' width..   var row input.parents tr   #list4 .jqGrid 'saveRow' row.attr id false          name 'unitStatus' index 'unitStatus' align.. 
 jqgrid incorrect select drop down option values in edit box http://stackoverflow.com/questions/4469650/jqgrid-incorrect-select-drop-down-option-values-in-edit-box    var row e.target .closest 'tr.jqgrow'   var rowId row.attr 'id'   select# rowId _State row 0 .html newOptions         .. row countryElem.closest 'tr.jqgrow'  select# .jgrid.jqID row.attr 'id' _state .html newOptions  editGridRowOptions recreateForm.. row.prev  if row.length 0  countryId grid.jqGrid 'getCell' row.attr 'id' 'country'  changeStateSelect countryId #country 0   onClose.. 
 jqgrid Save Cell Edit When DatePicker Is Closed http://stackoverflow.com/questions/6471087/jqgrid-save-cell-edit-when-datepicker-is-closed  var row input.parents tr  #requestTable .jqGrid 'saveRow' row.attr id false this would probably need some work I have no experience.. 
 Customizing the Add/Edit Dialog in jqGrid http://stackoverflow.com/questions/6495172/customizing-the-add-edit-dialog-in-jqgrid    row e.target .closest 'tr.jqgrow'   select# .jgrid.jqID row.attr 'id' _State row 0 .html newOptions          name 'State' width.. 
 JQGRID: any easy way to implement undo on excel like jqGrid implementation http://stackoverflow.com/questions/7016109/jqgrid-any-easy-way-to-implement-undo-on-excel-like-jqgrid-implementation  function cell  var row cell.closest 'tr.jqgrow' return row.attr 'id'  this.GetRowIndex function cell  var cellrow cell.parent.. .each function   row this .closest 'tr.jqgrow'  rowId row.attr 'id'  assetGrid.setCell rowId fnassetgrid.GridColumns fnassetgrid.GetColIndex.. if row null   row currentcell .closest 'tr.jqgrow'   rowId row.attr 'id'    var icol fnassetgrid.GetColIndex currentcell  assetGrid.setCell.. 
 JQ grid, marking row/column as dirty so that can be returned using .getChangedCells('dirty') http://stackoverflow.com/questions/14703082/jq-grid-marking-row-column-as-dirty-so-that-can-be-returned-using-getchangedce  dateText inst   var input inst.input the datepicker input   var row input.parents tr   #list4 .jqGrid 'saveRow' row.attr id false          name 'nett_Price' index 'nett_Price' width 80 align center sorttype currency formatter 'currency' formatoptions.. dateText inst   var input inst.input the datepicker input   var row input.parents tr   #list4 .jqGrid 'saveRow' row.attr id false          name 'unitStatus' index 'unitStatus' align center width 60 sortable true editable false  name 'listPriceFilter'.. 
 jqgrid incorrect select drop down option values in edit box http://stackoverflow.com/questions/4469650/jqgrid-incorrect-select-drop-down-option-values-in-edit-box  form 0 .html newOptions   else   inline editing   var row e.target .closest 'tr.jqgrow'   var rowId row.attr 'id'   select# rowId _State row 0 .html newOptions          name 'State' width 100 editable true formatter 'select' edittype.. .html newOptions else  inline editing row countryElem.closest 'tr.jqgrow'  select# .jgrid.jqID row.attr 'id' _state .html newOptions  editGridRowOptions recreateForm true onclickPgButtons function whichButton form rowid  var.. 'next'  row row.next  else if whichButton 'prev'  row row.prev  if row.length 0  countryId grid.jqGrid 'getCell' row.attr 'id' 'country'  changeStateSelect countryId #country 0   onClose function  resetStatesValues  grid.jqGrid data mydata datatype.. 
 jqgrid Save Cell Edit When DatePicker Is Closed http://stackoverflow.com/questions/6471087/jqgrid-save-cell-edit-when-datepicker-is-closed 
 Customizing the Add/Edit Dialog in jqGrid http://stackoverflow.com/questions/6495172/customizing-the-add-edit-dialog-in-jqgrid  form 0 .html newOptions   else   inline editing   row e.target .closest 'tr.jqgrow'   select# .jgrid.jqID row.attr 'id' _State row 0 .html newOptions          name 'State' width 100 editable true formatter 'select' edittype 'select' editoptions.. 
 JQGRID: any easy way to implement undo on excel like jqGrid implementation http://stackoverflow.com/questions/7016109/jqgrid-any-easy-way-to-implement-undo-on-excel-like-jqgrid-implementation  function cell  return cell.parent .children td  this.GetRowId function cell  var row cell.closest 'tr.jqgrow' return row.attr 'id'  this.GetRowIndex function cell  var cellrow cell.parent  return cellrow.parent .children tr .index cellrow  this.GetColIndex..  #hidEndCell .val ''   if ctrl key 88 CUT  assetGrid.find td.sel .each function   row this .closest 'tr.jqgrow'  rowId row.attr 'id'  assetGrid.setCell rowId fnassetgrid.GridColumns fnassetgrid.GetColIndex this .name '' '' '' true    fnassetgrid.ClearSelection.. 1     for each outer iteration get the rowid  if row null   row currentcell .closest 'tr.jqgrow'   rowId row.attr 'id'    var icol fnassetgrid.GetColIndex currentcell  assetGrid.setCell rowId fnassetgrid.GridColumns icol .name datarows.. 
 |