0

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...

Vishnu
  • 249
  • 1
  • 2
  • 5

1 Answers1

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