JqGrid reads selected multi line code for a property

  • 2020-03-30 02:59:41
  • OfStack

 
var selrow =articleTable.getGridParam('selarrrow');//Get the multi-row id
var columnCodes=[];//Initializes an array
$(selrow).each(function (index, yu) {//Iterate through each id to find each data and add the attributes to the initialization array
var rowData = articleTable.jqGrid("getRowData", yu); 
columnCodes.push(rowData.columnCode); 
}); 

Related articles: