Hello, is there any way to show while adding a new record a text bellow field?
For example i need to show bellow Field Name WHILE ADDING A NEW RECORD this text: NAME MUST MATCH WITH DRIVER LICENSE
thanks in advance
Hello, is there any way to show while adding a new record a text bellow field?
For example i need to show bellow Field Name WHILE ADDING A NEW RECORD this text: NAME MUST MATCH WITH DRIVER LICENSE
thanks in advance
You may use .append() jQuery and put it in Startup Script of current page to add the text below the field. Just inspect the element class/id selector from your browser.
You may also use the field object’s CustomMsg property, e.g. in Page_Load server event of the Add or Edit page,
$this->MyField->CustomMsg = ‘NAME MUST MATCH WITH DRIVER LICENSE’;
Thanks both!!!