Live only works with events, so you cannot do this with a tooltip.
You can still run cluetip for any newly created items.
So...
$('#grid').live('gridRefreshEvent', function () { $('#grid').find('a.clickableSticky').cluetip({ splitTitle: '|', showTitle: false, titleAttribute: 'description', activation: 'click', sticky: true, arrows: true, closePosition: 'title' }); }
Edit:
If the plugin does not provide an event, you can hack the plugin to create your own event by finding the ajax function in your code and adding: $('#grid').trigger('gridRefreshEvent'); somewhere.
You can also ask RadGrid support for the event. Any non-dumb developer would add basic things like this.
Mark
source share