如果条件为真,Symfony 会确认消息 (submit_to_remote)

发布于 2024-10-14 12:32:12 字数 468 浏览 3 评论 0原文

我在 Symfony 中制作了一个基于单选按钮的表单。如果选中单选按钮,我想发出确认消息。这是我的代码,但它并不完全是我想要的:

            <?php echo jq_submit_to_remote('deleteButton','Törlés', array(
                'url' => 'editCategory/deleteSubmenu',
                'with'=>"'value=' + getSelectedRadio()",
                'condition' => 'getSelectedRadio() != undefined',
                'confirm' => 'Are you sure?',
            )) ?>

这在每种情况下都会产生确认消息。如何在确认中添加条件?

I made a radiobutton based form in Symfony. I'd like to make a confirm message, IF a radio button checked. This is my code, but it's not exactly what I want:

            <?php echo jq_submit_to_remote('deleteButton','Törlés', array(
                'url' => 'editCategory/deleteSubmenu',
                'with'=>"'value=' + getSelectedRadio()",
                'condition' => 'getSelectedRadio() != undefined',
                'confirm' => 'Are you sure?',
            )) ?>

This makes the confirm message in every case. How can I add condition to the confirm?

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

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

发布评论

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

评论(1

愿得七秒忆 2024-10-21 12:32:12

你无法使用 symfony 的助手来做到这一点,你需要编写自己的 JS 代码。无论如何,这是推荐的方法 - javascript 助手被弃用是有原因的。

You won't be able to do that with symfony's helpers, you'll need to write your own JS code. That's the recommended way to do it anyway - there's a reason the javascript helpers got deprecated.

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