Alignment of controls
-
I have a asp.net page which i open it inside a form with fixed layout. Once the form is loaded the inside controls exceeds the form size, and i am not able to access the controls. I disabled the body scroll=no, since this is an requirement. Is there any other way to bring the controls inside the form without altering the form size. thanks in advance.........
-
I have a asp.net page which i open it inside a form with fixed layout. Once the form is loaded the inside controls exceeds the form size, and i am not able to access the controls. I disabled the body scroll=no, since this is an requirement. Is there any other way to bring the controls inside the form without altering the form size. thanks in advance.........
How about a scrollable DIV encompassing the form? So you get a little scrollbar for the DIV alone?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
How about a scrollable DIV encompassing the form? So you get a little scrollbar for the DIV alone?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinsonsuperb that works.... any idea how to disable the Verticle scrolling inside the div element? Million advance thanks..
-
superb that works.... any idea how to disable the Verticle scrolling inside the div element? Million advance thanks..
style = "overflowY :hidden;overflowX:auto"