Hello.
I am experiencing a problem with RadDatePicker
In my application, the user chooses Start date and End date and according to that, the grid is updated.
I would like to avoid using Refresh button, i.e. letting the user pick both dates and then click refresh to get the data.
On the other hand, I don't want to update the data each time one of the Pickers is changed, before the second one is also picked.
I would like to do it this way: when user picks one of the dates, the second DatePicker expands for him so he can immediately choose a second date, and no need to click a refresh button. What happens is that DatePicker.IsDropDownOpen property seems not working from code behind.
In DatePicker1 SelectionChanged event handler, I am doing DatePicker2.IsDropDownOpen=true, but this doesn't work. The DatePicker2 stays closed.
Maybe there is another control, like doubleDatePicker which makes it possible to choose a range of dates? Like in CheckIn-Checkout pages on the internet, the datepicker control consists of 2 calendars.
Thanks in advance for your help.
Alexander