Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exposed API for changing startDate and endDate #168

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions jquery.daterangepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,22 @@
}
setDateRange(d1,d2,silent);
},
setStartDate : function(d1)
{
if (typeof d1 == 'string')
{
d1 = moment(d1,opt.format).toDate();
}
setStartDate(d1);
},
setEndDate : function(d1)
{
if (typeof d1 == 'string')
{
d1 = moment(d1,opt.format).toDate();
}
setEndDate(d1);
},
clear: clearSelection,
close: closeDatePicker,
open: open,
Expand Down Expand Up @@ -1647,6 +1663,16 @@
showSelectedInfo();
autoclose();
}

function setStartDate(date1)
{
opt.startDate = date1;
}

function setEndDate(date1)
{
opt.endDate = date1;
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

only update the opt.startDate will not change the UI, did it?


function showSelectedDays()
{
Expand Down