I tried to upgrade from v2013.2.716 to v2013.2.918 (kendo.all.min.js) and ran into a few issues. My general question is whether there is a doc that provides more detail on the changes made, outside of the readme that just lists that a fix was applied with not much detail on how. Here are the two major issues I've seen and I've since rolled back to 716 since I don't have time to troubleshoot the issues right now.
View events:event objects always return empty objects. event.view and the other framework params are undefined in the show, init, and hide callbacks.
Mobile Listview: I have a detailbutton in my template and there an extra icon span with the same detail icon is being added to my li. Below is my template
View events:event objects always return empty objects. event.view and the other framework params are undefined in the show, init, and hide callbacks.
Mobile Listview: I have a detailbutton in my template and there an extra icon span with the same detail icon is being added to my li. Below is my template
01.<script id="tmp-favorite" type="text/x-kendo-template">02. # var bool = category.toLowerCase().indexOf("documents")<0 #03. # var path = !bool && ThumbnailImage && ThumbnailImage.indexOf("data:")<0?"data:image/jpeg;base64,"+data.ThumbnailImage:data.ThumbnailImage #04. <img src="#: path #"/>05. <div class="li-text">06. <p class="li-title">#: t # (#: FavoriteName #)</p>07. <p class="li-desc">#: FavoriteType #</p>08. </div>09. <span data-role="detailbutton" data-icon="isfavorite" class="item-favorite-status alt-btn right-1"></span>10. </script>