This is a migrated thread and some comments may be shown as answers.

[Solved] Click on tabstrip not responding on 2010.2.825

2 Answers 60 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
nachid
Top achievements
Rank 1
nachid asked on 26 Aug 2010, 09:10 AM
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
$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?

2 Answers, 1 is accepted

Sort by
0
Accepted
Atanas Korchev
Telerik team
answered on 26 Aug 2010, 09:11 AM
Hello nachid,

 This may be related to using older jquery.valdate.js. Make sure you are including at least 1.7. Earlier versions conflict with jquery.delegate which we are using for better performance.

Sincerely yours,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
nachid
Top achievements
Rank 1
answered on 26 Aug 2010, 09:26 AM
Thanks a lot Atanas
I moved to jquery.valdate.js 1.7. and It is working again

As usual very quick response
I nearly got the answer before I finished writing the question

Thanks again
Tags
TabStrip
Asked by
nachid
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
nachid
Top achievements
Rank 1
Share this question
or