This question is locked. New answers and comments are not allowed.
I just moved to 2010.2.825 and was surprised that all my tabstrips do not respond to click events
The culprit is this line of code in telerik.tabstrip.js
I replaced the new delegate with the good old live and it working again
Am I the only one with this experience?
The culprit is this line of code in telerik.tabstrip.js
$element... .delegate(enabledItems, options.activateEvent, $t.delegate(this, this._click))I replaced the new delegate with the good old live and it working again
$(enabledItems, element).live(options.activateEvent, $t.delegate(this, this._click));Am I the only one with this experience?