Hi Guys.
I used RadMaskedTextInput with ver. 2011.3.1220.1040 like this
<telerik:RadMaskedTextInput Text="{Binding BillingFilter, Mode=TwoWay}" >
Everything worked fine. (I don't remember where I took from that i needed use Text property.)
Unfortunately I have to rolled back telerik libs to old vers 2011.1.04.19.1040 ( due to ....well a lot of reasons..)
Now project is building successfully but throws exception at run time - it complains that Text property is read only. See attached picture
Ok, I decided to be a wise guy and checked documentation -)).
OK I am supposed to use property Value, not Text, like this: <telerik:RadMaskedTextInput Value="{Binding BillingFilter, Mode=TwoWay}" >
Looks like property Text was added recently, this property doesn't exist in old ver. 2011.1.04.19.1040.
How come that old ver. 2011.1.04.19.1040 can be compiled with property added recently?
And what is purpose of property Text?