or
In android device the view title is not visible though the TitleBar is visible.
Is there any way to make the view-title visible in kendo-ui-mobile navbar in android ?

@(Html.Kendo().Grid<Scholarship2013.Models.AwardCart>() .Name("Essay") .Columns(columns => { columns.Template(@<text></text>).ClientTemplate("#= AwardName # ").Title("Award essay"); } ) .ClientDetailTemplateId("essayTemplate") .Pageable() .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Read(read => read.Action("Essay_Read", "Student")) .PageSize(10) ) )<script id="essayTemplate" type="text/kendo-tmpl"> @(Html.Kendo().TabStrip() .Name("TabStrip_" + "#=AwardID#") .SelectedIndex(0) .Items(items => { items.Add().Text("Award Essay").Content(@<text> @Html.Kendo().Editor().Name("Test") </text>); }) .ToClientTemplate() )</script>Unhandled exception at line 9, column 7339 in http://localhost:21527/Scripts/kendo/2012.3.1315/kendo.all.min.js0x800a139e - Microsoft JScript runtime error: Invalid template:' <div class="k-widget k-tabstrip k-header" id="TabStrip_#=AwardID#"><ul class="k-reset k-tabstrip-items"><li class="k-item k-state-default k-state-active"><a class="k-link" href="\#TabStrip_#=AwardID#-1">Award Essay</a></li></ul><div class="k-content k-state-active" id="TabStrip_#=AwardID#-1" style="display:block"> <textarea cols="20" id="Test" name="Test" rows="5"></textarea><script> jQuery(function(){jQuery("#Test").kendoEditor({"tools":[{"name":"bold"},{"name":"italic"},{"name":"underline"},{"name":"strikethrough"},{"name":"fontName"},{"name":"fontSize"},{"name":"foreColor"},{"name":"backColor"},{"name":"justifyLeft"},{"name":"justifyCenter"},{"name":"justifyRight"},{"name":"justifyFull"},{"name":"insertUnorderedList"},{"name":"insertOrderedList"},{"name":"outdent"},{"name":"indent"},{"name":"formatBlock"},{"name":"createLink"},{"name":"unlink"},{"name":"insertImage"}],"messages":{"backColor":"Background Color"}});});<\/script> </div></div><script> jQuery(function(){jQuery("\#TabStrip_#=AwardID#").kendoTabStrip({});});<\/script>' Generated code:'var o,e=kendo.htmlEncode;with(data){o='\n <div class="k-widget k-tabstrip k-header" id="TabStrip_'+(AwardID)+'"><ul class="k-reset k-tabstrip-items"><li class="k-item k-state-default k-state-active"><a class="k-link" href="#TabStrip_'+(AwardID)+'-1">Award Essay</a></li></ul><div class="k-content k-state-active" id="TabStrip_'+(AwardID)+'-1" style="display:block">\n \n \n<textarea cols="20" id="Test" name="Test" rows="5"></textarea><script>\n\tjQuery(function(){jQuery("';Test").kendoEditor({"tools":[{"name":"bold"},{"name":"italic"},{"name":"underline"},{"name":"strikethrough"},{"name":"fontName"},{"name":"fontSize"},{"name":"foreColor"},{"name":"backColor"},{"name":"justifyLeft"},{"name":"justifyCenter"},{"name":"justifyRight"},{"name":"justifyFull"},{"name":"insertUnorderedList"},{"name":"insertOrderedList"},{"name":"outdent"},{"name":"indent"},{"name":"formatBlock"},{"name":"createLink"},{"name":"unlink"},{"name":"insertImage"}],"messages":{"backColor":"Background Color"}});});<\/script> </div></div><script> jQuery(function(){jQuery("#TabStrip_;o+='=AwardID';").kendoTabStrip({});});<\/script>;o+=;}return o;'$("#cboListe").kendoComboBox({ dataTextField: "Nom", dataValueField: "Id", dataSource: Module.Collection, filter: "contains", suggest: true, index: 1,});this.AddItemColl = function () { Item = new ObjetA(); Item.Id = this.Collection.length + 1; Item.Nom = "Nom" + (this.Collection.length + 1); this.Collection.push(Item); var combobox = $("#cboListe").data("kendoComboBox"); combobox.dataSource.read();}
<style scoped> #menu > .k-item.empty-split { width: 16px; } #menu > .k-item.empty-split > .k-link { padding-left: 0; padding-right: 0; }</style> <ul id="menu"> <li>Blog </li> <li class="empty-split"> <span class="k-link"> <span class="k-icon k-i-arrow-s"></span> </span> <ul> <li> <div id="template" style="padding: 10px;"> <h2>Around the Globe</h2> <ol> <li>United States</li> <li>Europe</li> <li>Canada</li> <li>Australia</li> </ol> <img src="../../content/web/menu/map.png" alt="Stores Around the Globe" /> <button class="k-button">See full list</button> </div> </li> </ul> </li> </ul>
<script type="text/javascript">
$(function () {
$("#menu").kendoMenu({
openOnClick: true
});
});
</script> 