I can't find any property for adding a tooltip for ultra web grid. Can anybody let me know how it can be done.
I want to provide tool tip for the grid only not for individual cell/columns. The tooltip should display on mouse hover. Is there a property which I can use for tool tip for the grid only.
You could do this on the client side by handling the client side InitializeLayout event:
var grid = igtbl_getGridById(gridName);
}
You can also pull the value from a hidden field that you set on the serverinstead of using the static string. This would be a variation of the above code if this tooltip is something that can change or is only known on the server.
Hello,
Above tooltip is applied on MainGrid.title. How to add update title properties of column header from client side event?
Thanks in Advance!