- This topic has 4 replies, 3 voices, and was last updated 13 years, 1 month ago by
Yann.
-
AuthorPosts
-
YannMemberHello,
i ve built my project with 1.4 version and built an IOS application. She run as well on my iphone.
This morning i upgraded my Mobione to 1.5 version.
When i build the same project (to test before sending to appstore) nothing works
See build 565057.
I tried change jquery version and build a verson with jquery jquery-1.3.2.min but i’ve the same result. (build 532090)
Thanks
Yann
YannMemberI rebuid my project entirely
it works better, but one feature that worked well with the older version of the auto select the date on a input select:var currentTime = new Date(); var day = currentTime.getDate(); $('select[name=jourResa]').val(day ).attr("selected","selected"); phoneui.preprocessDOM();
HTML Source code:
<div class="m1-aux-hidden-div"> <select id="m1-resa-hidden-select-jourResa" name="jourResa"> <option value="1" label="1" selected>1</option> <option value="2" label="2">2</option> <option value="3" label="3">3</option> <option value="4" label="4">4</option> <option value="5" label="5">5</option> <option value="6" label="6">6</option> <option value="7" label="7">7</option> <option value="8" label="8">8</option> <option value="9" label="9">9</option> <option value="10" label="10">10</option> <option value="11" label="11">11</option> <option value="12" label="12">12</option> <option value="13" label="13">13</option> <option value="14" label="14">14</option> <option value="15" label="15">15</option> <option value="16" label="16">16</option> <option value="17" label="17">17</option> <option value="18" label="18">18</option> <option value="19" label="19">19</option> <option value="20" label="20">20</option> <option value="21" label="21">21</option> <option value="22" label="22">22</option> <option value="23" label="23">23</option> <option value="24" label="24">24</option> <option value="25" label="25">25</option> <option value="26" label="26">26</option> <option value="27" label="27">27</option> <option value="28" label="28">28</option> <option value="29" label="29">29</option> <option value="30" label="30">30</option> <option value="31" label="31">31</option> </select> </div>
Any idea?
Thanks
Yann
support-michaelKeymasterMy thought is the preprocessDOM() call should include the ID of the screen that needs to be refreshed.
phoneui.preprocessDOM(); should be phoneui.preprocessDOM('#yourscreenId');
danielordbokMember@Yann wrote:
Hello,
i ve built my project with 1.4 version and built an IOS application. She run as well on my iphone.
This morning i upgraded my Mobione to 1.5 version.
When i build the same project (to test before sending to appstore) nothing works
See build 565057.
I tried change jquery version and build a verson with jquery jquery-1.3.2.min but i’ve the same result. (build 532090)
Thanks
YannI have the samme problem ?? How can I fix that ??
YannMemberHello,
thank a lot , your solution run as wellphoneui.preprocessDOM('#yourscreenId');
yann
-
AuthorPosts