I am wondering is there a way for keeping controls positions same while I am clicking asp calendar control for date selection. While I am clicking the calendar contrl my whole page expands including repostioning of all my controls.
Am I missing something
Please find code below
<script type="text/javascript">
function ToggleCalendar() {
var pnlCalendar = self.document.getElementById('pnlCalendar');
if (pnlCalendar.style.display == 'none') {
ShowHideCalendar(true);
}
else {
...
Go to the complete details ...