Categories | Question details Back To List | ||
refresh the inner frames with calender In My jsp page , there are two inner frames(iframe) , when i click the calender in one frame , then another frame will be refreshed, I want to control the refresh the frame thank Q Answer posted by Alex (support) on Feb 12, 2009 02:04 Calendar provides onclick event handler. It allows to call the necessary functionality when data is selected: dhtCalendar.setOnClickHandler(refreshFrame); function refreshFrame(){ ... } |