Hi Paramvir,
After the data saving the "add" commit fails if the grid includes pq_detail column (recIndx remains empty)
As a workaround I use the following code before the comit:
grid.Columns().find(function (column) {
if (column.dataIndx == "pq_detail") {
grid.Columns().hide({ diHide: ["pq_detail"] });
}
});
And the following after the commit:
grid.Columns().find(function (column) {
if (column.dataIndx == "pq_detail") {
grid.Columns().hide({ diShow: ["pq_detail"] });
}
});
Is it possible to fix it in the next release? E.g. skip the pq_detail column in the grid.commit function?
Thanks in advance for you help!