Hi Abu,
How do I present a tooltip to the user when they hover over the “>” character before clicking to expand into the subgrid? For example, I want to present something like “show audit trail” or “show recent price changes”
Many thanks, Gary
1 Answers
You can try this code in loadComplete event.
$opt["loadComplete"] = 'function();
{
jQuery(".ui-icon-carat-1-e").attr("title","Show recent price changes");
fx_tooltip_init();
}';
$g->set_options($opt);
Output:

Your Answer

