How can we assign a tooltip at cell level at client side using javascript.
ie. differrent tooptip text shown depending on the cell over which the mouse moves.
Hello,
I think you can start at the CSOM (client-side object model) documentation for Cell here:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.3/CLR2.0/html/WebGrid_cell_Object_CSOM.html
There is a public method getElement() which gets to the actual DOM Html element of the Cell. At this point I think you can directly set its title property to anything you wish (title in DOM is the actual tooltip of the element).
Hope this helps.