I am trying to make "truncator" jQuery plugin to work with RadGrid.
I am getting script error "this[expando] is not defined" which I assume is jQuery error and related to jQuery version mismatch
I checked your blog article that indicated that "new and improved" version of jQuery + RadGrid is coming in Q1 2009.
http://blogs.telerik.com/AtanasKorchev/Posts/08-11-06/ASP_NET_Ajax_Controls_and_jQuery.aspx
Is it out?
Is there a workaround to make existing jQuery plugins to work with RadGrid?
Plugin I am talking about is this one
http://henrik.nyh.se/2008/02/jquery-html-truncate
Code that fails
<script language="javascript" type="text/javascript">
(function($) {
$(document).ready(function() {
$('.longtext').truncate({ max_length: 24 });
}
);
})($telerik.$);
</script>
Thank you
I am getting script error "this[expando] is not defined" which I assume is jQuery error and related to jQuery version mismatch
I checked your blog article that indicated that "new and improved" version of jQuery + RadGrid is coming in Q1 2009.
http://blogs.telerik.com/AtanasKorchev/Posts/08-11-06/ASP_NET_Ajax_Controls_and_jQuery.aspx
Is it out?
Is there a workaround to make existing jQuery plugins to work with RadGrid?
Plugin I am talking about is this one
http://henrik.nyh.se/2008/02/jquery-html-truncate
Code that fails
<script language="javascript" type="text/javascript">
(function($) {
$(document).ready(function() {
$('.longtext').truncate({ max_length: 24 });
}
);
})($telerik.$);
</script>
Thank you