Tooltip / hoverover work around

Where is the hover over of a custom doctype field defined? Currently it displays the name of the field as shown below. How could I modify the hover over field to be useful information for the user?

Selection_177

I saw the Tooltip implementation was killed off in this thread which was disappointing. That feature is popular on the systems I have used and installed.

Hello, Found the solution, sharing it here :

refresh: function (frm) {
$(“[data-fieldname=‘start_date’”).attr(“title”, “Please mention the order begin date”);
}

Note : in the fieldname pass your custom field and in the title the tooltip message.

Technically, this will add the title attribute to the particular div of the field name given.

Hope this help, thanks!

Darshan Patel.