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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -