cordova - slider/range control in footer issue -
when adding phonegap (android) jqm web app jqm slider control should located in footer removed , placed b4 footer phonegap (?). adobe phonegap build used.
<div data-role="footer" data-position="fixed" data-theme="d" data-id="nav"> <div data-role="navbar" id="mynav"> <ul> <li><input type="range" name="dayslider" id="dayslider" value="180" min="1" max="365" data-highlight="true" /></li> <li><input type="button" data-icon="check" data-iconpos="bottom" value="animate" id="animate" onclick="animy()"></li> </ul> </div> </div>
what can reason? there restrictions (by phonegap) on can have in jqm footer?
that should work. have found jqm, data-position="fixed" not work devices , changed absolute css positioning. however, missing "/" in second input. causing issue.
<input type="button" data-icon="check" data-iconpos="bottom" value="animate" id="animate" onclick="animy()">
should be:
<input type="button" data-icon="check" data-iconpos="bottom" value="animate" id="animate" onclick="animy()"/>
Comments
Post a Comment