var targetHeight = '24px'; var $targetTR = $(".x-table tr").filter(function() { return $(this).css('height') === targetHeight; }); for(i = 0; i < $targetTR.length; i++){ var $targetTD = $targetTR.eq(i).find("td") for(s = 0; s < $targetTD.length; s++){ var amount_cell = $targetTD.eq(s).attr("editor") if (amount_cell != undefined){ console.log(amount_cell) console.log(_g().getCellValue(amount_cell,null)) } } } |