I created one grid that is editorgrid panel.
In that I put one field as editable.When I edit that field the whole record renders values.
I dont want to renders entire record .I want to change only that edit field.
I dont know how to do it and where to do it in ext-all-debug.js file.
Actually I am having two type of records that is with grouping header and without grouping header.
I mean if grouping records are more than one it has header and if it has only one record it doesn't has header.I just differentiate with colors those records.I put blue color for records
those are not having header.
In this grid one field as editor field.When I click on that edit cell and when I click on out of cell the color changes to default color.I dont want to change that color.
My code .....
gridRowRender : function(cs, rs, ds, startRow, colCount, stripe){
var ts = this.templates, ct = ts.cell, rt = ts.row, last = colCount-1;
var tstyle = 'width:'+this.getTotalWidth()+';';
// buffers
var buf = [], cb, c, p = {}, rp = {tstyle: tstyle}, r;
var start = 0;
//console.log("rs length "+rs.length);
if(rs.length>1)
start = 0;
if(rs.length==1){
//Ext.fly(this.innerHd).on("click", this.handleHdDown, this);
for(var j = start, len = rs.length; j < len; j++){
r = rs[j]; cb = [];
var rowIndex = (j+startRow);
for(var i = 0; i < colCount; i++){
c = cs[i];
p.id = c.id;
p.css = i == 0 ? 'x-grid3-cell-first ' : (i == last ? 'x-grid3-cell-last ' : '');
p.attr = p.cellAttr = "";