Hi guys I have a datatable with a transient in the entity as a total of an addition, i have to be able to modify the value of the transient for each row, i am doing it with cell editor, but when i try to change it, it goes back to its original value,
private Double v1;
private Double v2;
@transient
private Double total;
get{return getV1()+getV2()}
Can a transient be updated in memory and alter the list in the datatable?