I used mobiscroll date picker in my view.It works fine but when i select 30th march 2013 it shows only 29 days selectable.i don't get it, is there any setting for that.Please help me. Thanks in advance...
Asked
Active
Viewed 166 times
0
-
Please paste some code on how are you initializing the scroller – istvan.halmen Apr 05 '13 at 06:36
1 Answers
2
I solved myself the working code is following
$(function(){
$('#startdate').mobiscroll().date({
invalid: { },
theme: 'default',
display: 'modal',
mode: 'scroller',
dateOrder: 'mmD ddyy'
});
});

Vishnu
- 249
- 1
- 2
- 5
-
Yes, I wanted to see if you were using the 'invalid' option. Btw, you can ignore it completely, there's no need to pass an empty object. – istvan.halmen Apr 08 '13 at 06:48