Hi -
I have an application where with a custom grid containing around 60 datepickers. There are two BDPs per row <TR>, each of them in it's own cell <TD>.
What I want is when the user selects the first one (start date), I want the end date to have the same date selected automatically. I also want to stick with client-side scripting to avoid the annoying postback.
I'm having trouble accessing the ID of the BDP, when I use the getControlId(), it just returns "basicDatePickerPopup". Instead I want the ID like "Basicdatepicker5".
This way I can access the end date control as it would be name "Basicdatepicker5a", and set the date accordingly. Is there any way to get the element ID? Or another soloution?
Thanks,
Chase
*THANKS FOR THE RESPONSE!!