在 zk 中使用可扩展/可折叠弹出窗口

发布于 2024-10-02 16:31:21 字数 347 浏览 6 评论 0原文

我正在使用zk。我想知道 ZK 是否支持显示可折叠/可展开窗口的方式。假设我的网页上有一个超链接。当我单击超链接时,我不想导航到另一个页面,而是显示一个附加到超链接的可折叠/可展开弹出窗口,如下所示: http://www.screencast.com/users/sonyv/folders/Default/media/0ce4483a-d23d-4164-82f5 -c45a7dfff05b

谢谢, 索尼

I am using zk. I am wondering if ZK supports a way to display collapsable/expandable windows. Say, I have a hyperlink on my webpage. When I click on the hyperlink, instead of navigating to another page I would like to display a collapsable/expandable popup which is attached to the hyperlink like so : http://www.screencast.com/users/sonyv/folders/Default/media/0ce4483a-d23d-4164-82f5-c45a7dfff05b

Thanks,
Sony

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

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

发布评论

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

评论(2

梅窗月明清似水 2024-10-09 16:31:21

您可以使用 ZK 的 popup 组件

<popup id="mail" width="300px">
    <html><![CDATA[
        Please enter real email address. <br /> The validator
        allow multiple email addresses separated by semi-colons
        (<font color="red">;</font>).<br /> For
        Example:<u>[email protected]</u>;<u>[email protected]</u>
    ]]></html>
</popup>

并自定义样式以满足您的需要:)

you can use ZK's popup component

<popup id="mail" width="300px">
    <html><![CDATA[
        Please enter real email address. <br /> The validator
        allow multiple email addresses separated by semi-colons
        (<font color="red">;</font>).<br /> For
        Example:<u>[email protected]</u>;<u>[email protected]</u>
    ]]></html>
</popup>

and customize the style to fit what you need :)

幸福丶如此 2024-10-09 16:31:21

尝试以下操作:

<zk>
    <label popup="msg" value="Hyperlink" />
    <popup id="msg">
        <hbox>
            Select a color:
            <combobox />
        </hbox>
    </popup>
</zk>

我刚刚在 沙箱 中测试了它。您可以将任何您喜欢的内容放入弹出窗口中,并且可以将其放置在多种类型的组件上(不仅仅是标签)。

Try the following:

<zk>
    <label popup="msg" value="Hyperlink" />
    <popup id="msg">
        <hbox>
            Select a color:
            <combobox />
        </hbox>
    </popup>
</zk>

I just tested it in the Sandbox. You can put whatever you like inside the popup, and you can put it over several type of components (not only label).

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