Trigger on change events in read only textfields

4
I have the following problem: I want to do two calculations in this form. Calculate the number of shares, this is de differnce between first share nr and last share nr Calculate the Issued amount, this is the nr of shares X the nominal value The first calculation works fine. But then!!!! The On change event that is on the Nr. of shares textfield is not triggerd. Is this normal behaviour because the field is read only and is not changed by the client?
asked
1 answers
4

Is this normal behaviour because the field is read only and is not changed by the client?

Yes it is. A solution would be to add the 2nd calculation to the change event where the 1st calculation is done.

answered