用 aspxGridView 填充 AspxPopupControl

发布于 2024-10-16 08:04:10 字数 114 浏览 0 评论 0原文

我使用 aspxPopupControl 和 AspxGridView 。是否可以设置控件来填充所有弹出窗口,因为现在当我尝试调整该弹出窗口的大小时,当我增加弹出窗口的宽度时,顶部和底部有很多可用空间。感谢您的帮助

Im using aspxPopupControl with AspxGridView in it. Is it possible to set control to fill all popup cause now when I try to resize that popup there is a lot of free space at the top and bottom when I increase width od the popup. Thanks for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

北笙凉宸 2024-10-23 08:04:10

您是否看过新的 ASPxGridLookup 控件?我认为这正是您所需要的。

另请参阅ASPxGridLookup 控件的在线文档

Did you take a look at the new ASPxGridLookup control? I would assume that it is just what you need.

Also, see the online documentation of the ASPxGridLookup control.

清欢 2024-10-23 08:04:10

Gruber,

尝试本问题中提到的方法Q253230

<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server" Height="100%" Width="100%" ClientInstanceName="HtmlEditorBody" ResizingMode="Postponed"></dx:ASPxHtmlEditor>

<dx:ASPxPopupControl ...>
    <ClientSideEvents 
        AfterResizing="function(s, e) {
            HtmlEditorBody.SetHeight(s.GetHeight() - 25); HtmlEditorBody.SetWidth(s.GetWidth() - 25);
        }"
        BeforeResizing="function(s, e) {
            HtmlEditorBody.SetHeight(MIN_SIZE);
            HtmlEditorBody.SetWidth(MIN_SIZE); 
        }"
/>

虽然该代码是对于 ASPxHtmlEditor,您可以将其改编为 ASPxGridView。

Gruber,

Try the approach mentioned in this issue Q253230:

<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server" Height="100%" Width="100%" ClientInstanceName="HtmlEditorBody" ResizingMode="Postponed"></dx:ASPxHtmlEditor>

<dx:ASPxPopupControl ...>
    <ClientSideEvents 
        AfterResizing="function(s, e) {
            HtmlEditorBody.SetHeight(s.GetHeight() - 25); HtmlEditorBody.SetWidth(s.GetWidth() - 25);
        }"
        BeforeResizing="function(s, e) {
            HtmlEditorBody.SetHeight(MIN_SIZE);
            HtmlEditorBody.SetWidth(MIN_SIZE); 
        }"
/>

While that code is for the ASPxHtmlEditor, you can adapt it for the ASPxGridView.

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