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.

I have to set the startdate/Mindate in jquery datapicked calender. i am using datepicker v1.7.2. and using mindate and max date prpperty but its not working fine.

share|improve this question
Mind to explain what is not working? and while you're at it, try adding some codes here. – Reigel Oct 5 '10 at 8:29
can you post your code here ? – Alpesh Oct 5 '10 at 8:58

1 Answer

up vote 1 down vote accepted

Try this code. In this the end date is 1 day after start date.

$('#enddate').datepicker({
    dateFormat: "dd M yy",
    beforeShow: customRange,
    //Your other configurations.
    });

  function customRange(input) {
   if (input.id == "enddate")
    {
    dateMin = new Date();
    if ($("#startdate").datepicker("getDate") != null)
    {
    dateMin = $("#startdate").datepicker("getDate");
    dateMin.setDate(dateMin.getDate() + 1); //here we are adding 1 day to start date/
    }
    }
    return {
    minDate: dateMin
  }; 
}​
share|improve this answer
Try the above code, it should work as per your requirement. – Alpesh Oct 5 '10 at 13:13
Please, see the below...problem – Shivi Oct 6 '10 at 13:05
Sorry..now its working fine now.... – Shivi Oct 6 '10 at 13:13

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.