用aspxGridView填充AspxPopupControl

时间:2011-02-07 10:27:36

标签: c# asp.net devexpress

我在其中使用aspxPopupControl和AspxGridView。是否有可能设置控制以填充所有弹出窗口因为当我尝试调整弹出窗口时,当我增加弹出窗口的宽度时,顶部和底部有很多可用空间。谢谢你的帮助

2 个答案:

答案 0 :(得分:0)

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

另请参阅online documentation of the ASPxGridLookup control

答案 1 :(得分:0)

格鲁伯,

尝试本期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。