显示滚动的 rad 窗口
我正在使用 rad 窗口打开一个包含 div 的对话框,在该 div 内有一个表,我在其中显示一些注释,我必须为 div 提供可滚动分页,因此我为其添加了一些 css 属性。
现在的问题是 rad 窗口还显示滚动条,由于显示了两个滚动条如何删除滚动条,这给用户带来了困惑。
页面
<div class="div_Custom ">
<table class="tb_Custom">
</table>
</div
Css类
.div_custom
{
border:2px solid #E3E3E3;
margin:0 20px;
max-height:250px;
overflow:auto;
}
的HTML标记那么我应该怎么做才能删除滚动
I am using rad window to open a dialog which contains a div and inside that div there is a table in which i am showing some comments i have to provide the scrollable paging for the div so i have added some css property for it.
Now the problem is the rad window is also showing scroll that is creating confusion for the user due to two scrolls being shown how to remove the scroll.
The HTML markup of the page
<div class="div_Custom ">
<table class="tb_Custom">
</table>
</div
Css class
.div_custom
{
border:2px solid #E3E3E3;
margin:0 20px;
max-height:250px;
overflow:auto;
}
So what should i do to remove the scroll
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 RadWindow 的自动调整大小功能 - 自动调整大小演示< /a>.或者,您可以为 div 和 RadWindow 设置固定的宽度/高度,这样您就可以确保窗口足够大,并且 div 不会增长超过该大小。
You can try using the Autosize feature of the RadWindow - demo for autosize. Alternatively, you can set a fixed width/height for your div and the RadWindow so you are sure that the window will be big enough and the div will not grow past that size.