css3 - Kendo Mobile - "flat" skin incorrectly displays footer tabstrip tabs on Android 2.3 -


when testing on both android 2.3 simulator , devices, tabstrip adds tab blank (black background). occurs when there more 1 tab in tabstrip. upon removing "skin" property of kendo mobile app initialization, tabstrip correct.

does new skin have sort of differing flexbox implementation causing this? again, occurs on android 2.3.

i using kendo ui mobile q2 2013 release w/ jquery 1.9.1.

html:

<div data-role="view">     <footer data-role="footer">         <div data-role="tabstrip">         <a href="tab1.html">tab1</a>         <a href="tab2.html">tab2</a>         <a href="tab3.html">tab3</a>     </div>     </footer> </div> 

javascript:

var app = new kendo.mobile.application(document.body, {     skin: "flat"     }); 

update:

interestingly enough, problem not occur when using template define footer.


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -