Hi. I am using Oracle APEX 22.2.4.
I need to sum IG's column values whenever any cell's value in the column changes.
I am using the following code in the "JavaScript Initialization Code" attribute…
function(config) {
config.defaultGridColumnOptions = {
aggregates: ["SUM"]
};
return config;
}
And it works fine if the IG already has rows coming from the database. But, if IG is empty, it has no affect. It does not sum up newly added rows. How to solve this?