Necesito algun metodo de validar el check antes de que se seleccione he probado con la funcion:
Código:
  
N grid.on('afterEdit', function(e)
{//listening for the grid's 'validateedit' event 
        alert('okas');  
});
No me esta validando el check:
Código:
  
.ar checkEmi = new Ext.grid.CheckColumn({  
       header: 'B/E',  dataIndex: 'BOLEMI',  width: 55
 });
Bueno el 'afterEdit' funciona en los campos con input cuando edito y me sale la alerta "OKAS" pero en el check no.
Código:
  
Bueno cualquier ayuda se lo agradesco de antemano. Gracias....  var grid = new xg.EditorGridPanel({
        ds: new Ext.data.GroupingStore({
            reader: reader,
			// use local data
            data: app.grid.dummyData,
            //sortInfo: {field: 'ANOCOB', direction: 'ASC'},
            groupField: 'project'
        }),
        columns: [....]
 

