Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I call the onBeforeShow event with mobiscroll?

$('#starttime').mobiscroll('setValue', value).time({
        theme: 'jqm',
        display: 'modal',
        mode: 'clickpick',
        stepMinute: 10,
        onBeforeShow:  
 });

I need to set the time right before it shows. If I try to do it on document ready the input field isn't ready yet with the value...

Edit

I tried:

$('#starttime').mobiscroll('setValue', value).time({
        theme: 'jqm',
        display: 'modal',
        mode: 'clickpick',
        stepMinute: 10,
        onBeforeShow: function(html, inst) {
            start = $('#starttime').val();
            var a = moment();
            var value = a.format('h:mm A');

            }
        });

but then I'm getting the error: 'value is not defined'...

share|improve this question

1 Answer

up vote 2 down vote accepted

You have to provide a callback function.

$('#starttime').mobiscroll('setValue', value).time({
        theme: 'jqm',
        display: 'modal',
        mode: 'clickpick',
        stepMinute: 10,
        onBeforeShow: function (html, inst) {
            //Gets called before the scroller appears. The function receives the jQuery object containing the generated html and the scroller instance as parameters
        }
 });

http://docs.mobiscroll.com/23/mobiscroll-core

share|improve this answer
Thanks I was looking there but this didn't have a code sample...hm but how do I set the value of 'value' if I'm setting it in "onBeforeShow"?? – redconservatory Jan 12 at 2:47
I have never used mobiscroll but you can try this : $('#starttime').mobiscroll('setValue', value) inside the callback function – Libert Piou Piou Jan 12 at 3:00
1  
You also can use the instance "inst" to set the value. docs.mobiscroll.com/23/mobiscroll-instance – Levi Kovacs Jan 12 at 7:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.