Hi All,
I had a requirement that I need to pass a JSON string through a input property while registering the control on field. In the control manifest, I defined a input property "GroupingOptions" with type as "Mulitple". The problem came up when I'm passing json string with more than 100 characters it's truncate upto 100 characters, but as per the documentation property of type 'Mulitple' accepts upto 1,048,576 characters and I tried with SingleLine.Textarea(accepts upto 4000 characters) too, got the same result. So, I'm wondering here that am I miss something or is it a bug?
Property Definition in Control Manifest file.
<property name="GroupingOptions" display-name-key="GroupingOptions_Display_Key" description-key="GroupingOptions_Desc_Key" of-type="Mulitple" usage="input" required="false" />

Can anyone please help me here...