CollapsiblePanelExtender 在初始页面加载时不会完全打开

发布于 2024-07-13 19:58:41 字数 190 浏览 18 评论 0原文

我正在使用 AjaxControlToolkit 中的 CollapsiblePanelExtender,当我单击它时它工作正常,但它不会在初始页面加载时一直展开(展开约 90%)。

我必须手动折叠它并展开它才能完全打开。

我没有设置 ExpandedSize 属性,因为面板内容是动态的。

有任何想法吗?

I'm using CollapsiblePanelExtender from AjaxControlToolkit, it works fine when i click on it, but it won't expand all the way on the initial page load (expands about 90%).

I have to collapse it and expand it back manually for it to open up all the way.

I don't have the ExpandedSize property set, because the panel content is dynamic.

Any ideas?

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

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

发布评论

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

评论(3

苏大泽ㄣ 2024-07-20 19:58:41

在扩展器的目标上使用以下样式:

.collapsiblePanelContainer {
  height: 0;
  overflow: hidden;
}

CollapsiblePanelExtender 将处理其余的工作。

Joe Stagner 在 CollapsiblePanelExtender 视频 中提到了此技巧。

Use the following style on the target of the extender:

.collapsiblePanelContainer {
  height: 0;
  overflow: hidden;
}

The CollapsiblePanelExtender will take care of the rest of the work.

This tip is mentioned by Joe Stagner in the CollapsiblePanelExtender video.

通知家属抬走 2024-07-20 19:58:41

如果可折叠面板中的数据是固定的并且不需要调用页面回发,请将 CollapsiblePanelExtender 的“SuppressPostBack”属性设置为 true。 这将使扩展动作能够更快、更顺利地完成。 您不会注意到延迟。

If the data in the collapsible panels is fixed and there is no need to call a page postback, set the "SuppressPostBack" property of the CollapsiblePanelExtender to true. This will allow the expand action to complete more quickly and smoothly. You won't notice a delay.

蝶…霜飞 2024-07-20 19:58:41

尝试按照实际面板的样式设置“min-height”的值。 否则,您可以在 PreRender 事件中以编程方式设置高度或 ExpandSize

protected override void OnPreRender(EventArgs e)
{
    base.OnPreRender(e);
    // Set the size here
    myCollapsiblePanelExtender.ExpandedSize = sizeValue;
}

Try to set the value of "min-height" in the style of the actual panel. Otherwise you can programmatically set the height or the ExpandSize in the PreRender event

protected override void OnPreRender(EventArgs e)
{
    base.OnPreRender(e);
    // Set the size here
    myCollapsiblePanelExtender.ExpandedSize = sizeValue;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文