How can i add a tooltip to the RSform!Pro fields ?
Due to the flexible nature of RSform!Pro, one can use the default Joomla tool tip inside a form. The process itself is simply adding the following class in the Additional Attributes of a field:
class="editlinktip hasTip" title="test title::test body"
Furthermore, the Joomla tooltip behavior has to be loaded on the form page. To do this, just add the following line in the Scripts called on form display area:
JHTML::_('behavior.tooltip');
Note that instead of "test title" and "test body" you can use your actual text. The first part, "test title" will become bolded by default.








