Background
I have 2 Floating Field of Text Field type that are bind to same Context.
I would only like to have one of them to be shown in all UpperCase.
I've tried to include the below in its layout:ready
this.rawValue = this.rawValue.toUpperCase();
But with the above, it changes the rawValue of the 2nd Text Field.
Are there are any way to decoupled the behaviour?