myDecimalField.rawValue is the value which is in the Field... but not
the default one.To look up what was the default set:If you make an
invisible fieldif (this.rawValue = null){this.rawValue =
myDecimalField.rawValue;} on initialize it should stay the default value
even if the user changes it.Though I don't get why you want to determine
the default value.If you want to change the value by the way the
userentries:this.rawValue = myDecimalField.rawValue(f.ex. on an exit
event of another field...)...