|
Rank: Member Groups: Member
Joined: 7/7/2010 Posts: 28
|
Dialog component content is more then it display more then the screen size, but we can not scroll bottom.
Is it possible to get scroll window in the dialog. I have defined maxwidth and maxheight size still it goes beyound the same size and then does not display the all contents.
I am using the dialog component for display the notice board.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You can use a DIV inside the dialog, set that DIV's width and height and then set its overflow to "auto". That way that DIV will become scrollable.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 7/7/2010 Posts: 28
|
Hi,
Thanks for the same, i have tried it but could not get result. You have any sample, please provide us so i can use it.
Thanks,
Mehul
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
This has nothing to do with the dialog. You do something like this:
Code: HTML/ASPX
<div style="width:100px;height:100px;overflow:auto">
a lot of contents here......
</div>
The div has a fixed size (100 by 100) and if the content size exceeds the div size then the div will have scroll bars. Thanks
|
|
Rank: Member Groups: Member
Joined: 7/7/2010 Posts: 28
|
Hi,
Thanks for your guidance. I have done the same way earlier but i have removed it " symbol because in asp.net program this symbol consider the different meaning.
I have replaced the " with ' and it work perfectly ok.
Thanks again,
Mehul
|
|