Hi. Is it possible to have a tooltip pop-up when hovering over an input field in a modal edit form?
Alternatively, some kind of text above the field would also work.
The purpose is to provide instructions to the user filling out the form regarding the field.
Thanks.
2 Answers
Hello,
You can use:
$col["editoptions"]["title"] = "some tooltip help";
OR in case of using bootstrap theme:
$col["editoptions"]["placeholder"] = "some tooltip help";
Your Answer