Textbox with Multiline not showing value=""

Hi,


I'm using the textbox as follows


<ejs-textbox [multiline]="true" value="Please provide your payment instructions and acceptance of the terms."></ejs-textbox>


And the value isn't showing. I have also noticed this in your documentation for the same control. Why isn't the value showing?


1 Reply

BC Berly Christopher Syncfusion Team November 29, 2021 08:50 AM UTC

Hi Glen Alexander,

Greetings from Syncfusion support.

We need to define the value property with Angular property binding syntax as mentioned in the below code example to ger rid of the reported issue.


[multiline]="true" [value]="value">
public value =
'Please provide your payment instructions and acceptance of the terms.';

Please find the sample below.


Regards,
Berly B.C



Loader.
Up arrow icon