$('#Startdate').daterangepicker({
singledatepicker=true,
locale:{Format : "dd-mm-yyyy"}
});
$('#Enddate').daterangepicker({
singledatepicker=true,
locale:{Format : "dd-mm-yyyy"}
});
In UserInterface I have two Text box @html.EditiorFor(m=>m.Startdate)
and @html.EditiorFor(m=>m.Enddate)
.
How can we change when we select date from startdate and enddate automatically shown end date of that month ? I am also unable to show current textbox date in daterangepicker to highlight. any help will be appreciated...