drupal如何在弹出窗口中创建内容时刷新页面

发布于 2024-08-20 19:23:07 字数 269 浏览 6 评论 0原文

我设计了一个我必须使用的面板 用于创建内容的弹出链接和自动模式类......

<a href ="/testviewprintpdf/<?php echo $object; ?> " class ="popups-form-noreload">view objects</a>

现在保存内容并关闭弹出窗口后,面板页面将被刷新,

这是如何完成的...... 听起来很简单但是 我是 drupal 的新手

i have designed a panel where i have to used
to popup links and automodal class for creation of content....

<a href ="/testviewprintpdf/<?php echo $object; ?> " class ="popups-form-noreload">view objects</a>

now after saving the content , and closing the popup the panel page is to be refreshed

how it is done.....
it sounds simple but
i m newbie to drupal

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

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

发布评论

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

评论(1

墨离汐 2024-08-27 19:23:07

从你的类名来看,你似乎正在使用弹出窗口模块?如果这是真的,并且您希望启动弹出窗口的父级在弹出窗口关闭时刷新,则您希望该类为“popups-form-reload”

<a href ="/testviewprintpdf/<?php echo $object; ?> " class ="class="popups-form-reload"">view objects</a>

似乎您在启动弹出窗口的页面上有一个链接当点击时。您可以使用 Drupal l 语法,l 表示链接

l("view objects", 'testviewprintpdf', array('attributes'=>array
    (array('class' => 'popups-form-reload'))))

From your class name, it would seem you are using the popups module? If that is true, and you want the parent where the popup is launched from to refresh when the popup is closed, you want the class to be "popups-form-reload"

<a href ="/testviewprintpdf/<?php echo $object; ?> " class ="class="popups-form-reload"">view objects</a>

Seems like you have a link on a page that launches the popup when clicked. You can use the Drupal l syntax, l for link

l("view objects", 'testviewprintpdf', array('attributes'=>array
    (array('class' => 'popups-form-reload'))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文