I use several buttons to jump to predefined dates in calendar. This can be done using dpc1.commandCallBack('command', date);. Unfortunately, the Navigator does not reflect the changes in calendar. How can I set startDate and selectionStart in Navigator (on client side or from the commandCallBack in code behind)?
I tried the following (javascript):
dpn1.startDate = new Date();
dpn1.selectionStart = new Date();
dpn1.updateSelection();
This doesn't work. May be I'm completely wrong.
Also i could not find any documentation on the navigator client side api.
I got the same issue.
How do we update the navigator?
Comment posted by brandon 14 years ago.
This is how my navigator functions as well. The navigator still works as it should but it just displays incorrect selected/highlighted weeks and/or days. You could even be looking at a different month but as long as you got there without using the navigator the navigator isn't really aware of the change.
Comment posted by Anonymous 13 years ago.
I had the same issue & figured it out, call
dpn1.select();
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.