Getting span title on document ready not working in kendo tab strip
0
I have kendo tab strip for kendo grid row and its uses a partial view. It displays an image if it is available. Now I want to display a default image if no image is available. Images are available in form of url. I was trying to achieve it via document ready event for the tab strip. Lately I have added a span with title to see if I am able to get the value and apply the logic but it is not working.The span with data-bind="attr:{title:ImgLink} doesn't give any value. However when I am put the default span title I am able to get the value. Code below: 1. TAB STRIP @(Html.Kendo().TabStrip() .Name("tabStrip_#=SeriesId#") .SelectedIndex(0) .Animation(animation => animation.Open(open...