This question is locked. New answers and comments are not allowed.
I just introduced Telerik Tabstrip control to my already existing MVC project. Tabs shows up perfect, but when I introduced client event wiring, it stopped working.
All scripts seems to be loaded:
This is what I see in FireBug,
All scripts seems to be loaded:
This is what I see in FireBug,
<script type="text/javascript">
function onSelect(e) {
var item = $(e.item);
$console.log('OnSelect :: ' + item.find('> .t-link').text());
}
<script type="text/javascript" src="/Scripts/telerik.common.js"></script>
<script type="text/javascript" src="/Scripts/telerik.tabstrip.js"></script>
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function(){
jQuery('#TabStrip').tTabStrip({onSelect:onSelect});});
//]]>
Any ideas any one?
Any ideas any one?