Hi,
I am using mobiscroll datetimepicker widget. First of all, I have to insert an input widget in the screen:
input name="demo" id="demo" class="i-txt"
After, I put the following Javascript code in the Load screen event (my screen is named "screen1":
$('#demo').mobiscroll().datetime({
minDate: new Date(now.getFullYear(), now.getMonth(), now.getDate()),
theme: 'ios',
display: 'bottom',
mode: 'scroller'
});
When I run the application, the datetime picker is not loaded when I click the "demo" input. But, when I go to the source code, and change the input id from "screen1_demo" (generated by app builder) to "demo" it works properly. But, of course, I don't want to change the source code because it may be done only in the end of development. The question is: is there another way of changing input id without changing the source code (that is, I want the same "name" and "id") ?
Thank you very much.