firebug breakpoints not working on cellClick
So I seem to be having a real problem with firebug today.
it won't stop at a breakpoint within a cellclick.
I know it's getting there because the window opens.
it's making me a little nuts.
I have done this same thing many times, any idea ?
any idea why or what I may have done ?
Code:
grid.addListener({
'cellclick' : {
fn : function(grid, rowIndex, columnIndex, event) {
//Place breakpoint on the next few lines.
var record = grid.getStore().getAt(rowIndex);
window.show();
Ext.getCmp("firstNameid").setValue(record.data.firstName);
Ext.getCmp("lastNameid").setValue(record.data.lastName);
Ext.getCmp("middleInitialid").setValue(record.data.middleInitial);
Ext.getCmp("line1id").setValue(record.data.line1);
Ext.getCmp("line2id").setValue(record.data.line2);
Ext.getCmp("cityid").setValue(record.data.city);
Ext.getCmp("stateid").setValue(record.data.state);
Ext.getCmp("zipCodeid").setValue(record.data.zipCode);
},
scope : this
}
});