I have an editable interactive grid, with less than 20 rows, where a change on one cell updates values on some other cells. I use model.subscribe and model.setValue for this task.
It works well with one problem:
the new values of cells on the same column of the triggered cell at rows different from the selected row won't appear until I click on them. This means setValue works, but somehow the model or view does not refresh the new data properly for the column that has the triggered cell. Only happens on cells of the column that has the cell that triggers the changes. Updates on other columns (of any rows) are displayed just fine.
This is tested on Apex 23.2.3 and 24.1.
Any idea where I should look at ?
Thanks,
Vu
Update 1: if I click Save, all values are actually saved, just that the values in the column that has the initial change do not show on the grid before saving.