在弹出窗口中显示 Plone FormGen

发布于 2024-12-28 07:27:05 字数 312 浏览 3 评论 0原文

我使用 PloneFormGen 工具创建了一个表单。现在我想在弹出窗口中显示此表单,其方式类似于单击按钮时显示的登录表单。 我研究了 jquery 工具模块,它让我可以选择在弹出窗口中加载 url/ajax 表单。我尝试在 iframe 中加载 url,但它在弹出窗口中显示整个页面。 我只需要显示表单部分。 我是否需要以某种方式自定义 plone formgen 表单以便 jquery 工具能够理解它? 或者我需要以其他方式创建表格? 重点是,一旦我的表单成功提交,我也需要邮件程序功能,因此 Plone FormGen 满足这种情况下的要求。 任何有关这方面的指导/指示都会有所帮助。请提出一些建议。

I have created a form using PloneFormGen tool. Now I would like to display this form in a popup in a manner similar to the login form is displayed on click of a button.
I've looked into the jquery tools module that give me the option to load a url/ajax forms in a popup. I tried to load the url in iframe but it displays the entire page in the pop-up.
I only need the form section to be displayed.
Do I need to customize the plone formgen form in some way so that the jquery tools understands it?
Or do I need to create the forms in some other manner?
The point is I need the mailer functionality also once my form is successfully submited so Plone FormGen fits the requirement in this case.
Any guidance/pointers on this would be helpful. Do suggest some pointers.

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

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

发布评论

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

评论(2

浊酒尽余欢 2025-01-04 07:27:05

看一下 Plone 在 plone_ecmascript/popupforms.js 中设置自己的弹出表单的方式。它将向您展示几个关于如何制作弹出表单的真正有效的示例。例如,联系表单设置:

// contact form
$('#siteaction-contact a').prepOverlay(
    {
        subtype: 'ajax',
        filter: common_content_filter,
        formselector: 'form[name="feedback_form"]',
        noform: function(el) {return $.plonepopups.noformerrorshow(el, 'close');}
    }
);

PFG 表单没有什么不同。请注意“过滤器”规范:这可以确保您不会显示超出您希望的页面内容。这种过滤可以在 AJAX 弹出窗口中实现,但不能在 iframe 中实现。

完整详细信息请参见 http://pypi.python.org/pypi/plone.app .jquerytools/1.4b1

Take a look at the way Plone sets up its own popup forms in plone_ecmascript/popupforms.js. It'll show you several really working examples of how to do popup forms. For example, the contact form setup:

// contact form
$('#siteaction-contact a').prepOverlay(
    {
        subtype: 'ajax',
        filter: common_content_filter,
        formselector: 'form[name="feedback_form"]',
        noform: function(el) {return $.plonepopups.noformerrorshow(el, 'close');}
    }
);

PFG forms are no different. Note the "filter" specification: that's what makes sure you don't show more of the page than you wish. That kind of filtering is possible in an AJAX popup, but not an iframe.

Full details at http://pypi.python.org/pypi/plone.app.jquerytools/1.4b1

萌酱 2025-01-04 07:27:05

您可以查看 Plone 的弹出表单:http://plone.org/products/pipbox。 portlet.popform

You might take a look at Popup Forms for Plone: http://plone.org/products/pipbox.portlet.popform

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