well, if anyone else needs this, what i did was created some javascript that hides the calendar and sets the focus to another control. like this:
javascript Code:
function pageLoad(sendor,e) { var calendarBehavior=$find("calendar2"); calendarBehavior.set_selectedDate('<%=DateTime.Now.ToString() %>'); calendarBehavior.hide() var getDDL =document.getElementById('reportView1_ddlMatType') getDDL.focus() return false }




Reply With Quote