I am trying to set the store field value for a value from a textfield on a popup window - I have the following on the window hide listener - the cell value is not picked up until another cell is edited - almost as if the cell is not refreshing after the below:




var setText = function() {


storeQuickAdd.data.items[intRowIndex].data[strTextData] = taText.getValue();


var record = gridQuickAdd.getStore().getAt(intRowIndex); // Get the Record


record.set(strTextData, taText.getValue());


};