Hi Set Bro,
Thank you for contacting Syncfusion support.
Currently we have not provided support for assistive text in the textbox component. We will consider this as a feature request and will be included in any of our upcoming updates. Meanwhile we can achieve the requirement in the application using the form validator component. We need to map the error element with data-msg-containerid input attribute to get the text. Kindly refer to the following code snippet.
[HTML]
|
<form id="form1">
<div class="form-group" style="padding-top: 11px;">
<div class="e-float-input">
<input type="text" id="name" name="Name" data-required-message="* Enter your name" required data-msg-containerid="nameError">
<span class="e-float-line"></span>
<label class="e-float-text e-label-top" for="name">Name</label>
</div>
<div id="nameError"></div>
</div>
</form> |
[Result]
Regards,
Prince