Rendering Cells not working when i am pasting cells.
obj.cellSave = function (evt, ui) {
$(this).pqGrid('refreshRow', { rowIndx: ui.rowIndx });
var ratesarray = ["rateeeonly", "rateeeplusoneonly", "rateeeplus2", "rateeepluschildren", "rateeeplusspouse", "rateeefamily"];
var contributionsarray = ["contreeonly", "contreeplusoneonly", "contreeplus2", "contreepluschildre", "contreeplusspouse", "contreefamily"]
if (!($.inArray(ui.dataIndx, ratesarray) == -1)) {
ratevalidations(ui);
$(this).pqGrid("refreshCell", { rowIndx: ui.rowIndx, dataIndx: ui.dataIndx });
}
if (!($.inArray(ui.dataIndx, contributionsarray) == -1)) {
contributionvalidations(ui);
$(this).pqGrid("refreshCell", { rowIndx: ui.rowIndx, dataIndx: ui.dataIndx });
}
};
contributionvalidations(ui) and rateContribution assign colors based on values entered..
Since save key is tab - when you tab on that cell it works - but when you try to paste colors are not displayed .
I need this to be Fixed ASAP . can you please help ?