I have a datetime column, so when the user can enter a date using the calendar pop up. How can I set a default value for the calendar that is being poped?
Is it possible to have control over that calendar?
So the only way is to set the cell value to a default value on a beforcelldropdown event maybe ?
Correction: There is no AfterCellListDropDown event. I was thinking of BeforeCellListDropDown. But that won't work, because it fires before the list is dropped down and the selected item has not yet been set. So there's no way to do this.
Hi,
The selected date in the dropdown is determined by the current Value of the cell in the grid. You might be able to change the selected value inside the AfterCellDropDown event of the grid, but this would also alter the value of the cell, just as though the user had selected a value, so I don't think that's what you want.