kendo ui - KendoUI tabstrip navigates to blank page -


i'm using custom tabstrip took kendoui page , adapted application.\

it has 3 tabs (home, startofday , stops). each tab goes html page.

the problem this, can navigate home 1 of other tabs without problem, after if try navigate tab goes blank page.

here's layout code.

<section data-role="layout" data-id="default">     <header data-role="header">         <div data-role="navbar">fnf driver application</div>     </header>     <!--view content render here-->     <footer data-role="footer">         <div data-role="tabstrip" id="custom-tabstrip">             <a data-icon="home" href="home.html">home</a>             <a data-icon="globe" href="startofday.html">start of day</a>             <a data-icon="toprated" href="stops.html">stops</a>         </div>     </footer> </section> 

each page contained in div looks this...

<body>     <div id="home/startofday/stops" data-role="view" data-layout="default">      ~content goes here~     </div> </body> 

any appreciated.

thanks!!!

try removing <body> tags views? think when kendo ui mobile reads in remote view injects page dom, , having <body> tag might messing up.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -