可折叠面板悬停在页面上
有没有办法让 AJAX CollapsiblePanel 下拉并将鼠标悬停在页面上的其他元素上,而无需调整大小?
现在,我有:
<asp:Button ID="TriggerButton" runat="server" />
<asp:Panel ID="CollapsiblePanel" runat="server">
</asp:Panel>
<asp:CollapsiblePanelExtender ID="CollapsiblePanelExtender" runat="server" TargetControlID="CollapsiblePanel" Collapsed="true" AutoCollapse="false" AutoExpand="false" ExpandControlID="TriggerButton" CollapseControlID="TriggerButton">
</asp:CollapsiblePanelExtender>
感谢您的帮助。
Is there a way to have an AJAX CollapsiblePanel drop down and hover over the other elements on the page without resizing things?
Right now, I have:
<asp:Button ID="TriggerButton" runat="server" />
<asp:Panel ID="CollapsiblePanel" runat="server">
</asp:Panel>
<asp:CollapsiblePanelExtender ID="CollapsiblePanelExtender" runat="server" TargetControlID="CollapsiblePanel" Collapsed="true" AutoCollapse="false" AutoExpand="false" ExpandControlID="TriggerButton" CollapseControlID="TriggerButton">
</asp:CollapsiblePanelExtender>
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有开箱即用的选项,但我猜测你可能可以通过使用 css 并设置面板和周围控件的 z 索引来完成一些操作。我的 css 不太好,但当说到定位,很抱歉我无法给出任何例子。
编辑:
试试这个: http://www.experts -exchange.com/Programming/Languages/.NET/ASP.NET/Q_23761881.html
(如果您没有专家交换会员资格,请向右滚动到页面底部,然后显示答案!)
Out of the box there is no option as far as I am aware but I'd make a guess you could probably do something by using css and setting the z index of the panel and surrounding controls .. my css isn't great though when it comes to positioning so sorry I can't give any examples.
EDIT:
Try this: http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23761881.html
(if you don't have a experts exchange membership scroll right to the bottom of the page and the answer is displayed!)