Fixed Toolbar usage. data-hide-during-focus

Fixed Toolbar usage. data-hide-during-focus

We have recently come across an issue with our fixed toolbars with the 1.3 upgrade. On iOS devices after the upgrade, we noticed that our fixed headers were hiding when we would tap on input fields on the page. To fix this we had to do some digging and found the data-hide-during-focus attribute and set it to an empty string. This allowed our headers to stay fixed, and also improved some performance issues on the page.

  1. <div data-role="header" data-position="fixed" data-tap-toggle="false" data-hide-during-focus=""></div>

Not sure if this is a bug or just poorly documented, but I thought others may find it useful.