1
Bug Report / New row comit and pq_detail column
« on: March 03, 2025, 08:58:19 pm »
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:
And the following after the commit:
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!
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:
Code: [Select]
grid.Columns().find(function (column) {
if (column.dataIndx == "pq_detail") {
grid.Columns().hide({ diHide: ["pq_detail"] });
}
});
And the following after the commit:
Code: [Select]
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!