tags:

views:

182

answers:

1

Is it possible to add tooltip to the expand/collapse button oJQGrid so that it can change when expanded and vice versa ...

A: 

You need to see the documentation for the control but if not i just inspect it and collapse button html is

<span class="ui-icon ui-icon-circle-triangle-n"></span>

and expand is

<span class="ui-icon ui-icon-circle-triangle-s"></span>

so you can get the element by jquery and append what ever kind of html elements you want

Amgad Fahmi
I need to append the tittle condionnally will that do it ...
lucky