显示滚动的 rad 窗口

发布于 2024-10-30 10:50:48 字数 469 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2024-11-06 10:50:48

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文