tooltip for master_checkbox

Hi,



I am loading a subgrid using XML which has a #master_checkbox as the first column. How can I get a custom tooltip for the #master_checkbox cell (only for the #master_checkbox cell and not the entire column).



Following is the header section from the XML file…



                    #master_checkbox

                    Client

                    Public?

                    Statement Type

                    Period Year

                    Period Type

                    Grace Days

                    Status

                    

                 true,true,false,true,false,false,false,false

                

                



Thanks,

Gaurav Arora


Grid hasn’t native API wich allow you to set tooltip for the header. It can be done via DOM:


mygrid.hdr.rows[1].cells[0].title=‘tooltip’;

Or just place an HTML snippet inside header
<![CDATA[ Period Year ]]>