drupal如何在弹出窗口中创建内容时刷新页面
我设计了一个我必须使用的面板 用于创建内容的弹出链接和自动模式类......
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从你的类名来看,你似乎正在使用弹出窗口模块?如果这是真的,并且您希望启动弹出窗口的父级在弹出窗口关闭时刷新,则您希望该类为“popups-form-reload”
似乎您在启动弹出窗口的页面上有一个链接当点击时。您可以使用 Drupal l 语法,l 表示链接
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"
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