Question about bulk edit

I used bulk Edit in my application after consulting the manual here. Everything works fine, but when i change the values of some records (bigdecimal values) i have to open the records one by one to commit them.

The values are used in a calculation. So i have to open all of them one by one for recalculation (commit)

Is there a way to commit the bulk edit action?

Regards,

Lloyd

Hi!

Unfortunately, we cannot reproduce the problem.
I use calculated attribute like this:

@Transient
private BigDecimal bdResult;

public BigDecimal getBdResult() {
    if (bdA != null && bdB!= null)
        return bdA.add(bdB);
    return BigDecimal.ZERO;
}

Bulk editing of the records immediately updates the values inside the table.
Please tell us the version of the platform you are using, and provide additional information about your case.

Regards,
Irina