对 Zend_Form 中的特定子表单使用自定义 isValid() 函数
我有一个包含多个子表单的表单。我已经用自己的方法覆盖了表单的 isValid 函数,但找不到任何有关如何为每个子表单设置 isValid 函数的文档。
有人可以发布链接或示例代码,以便我可以学习如何执行此操作。
提前致谢。
I have a form with several subforms. I've overriden the form's isValid function with my own, but can't find any documentation on how to set an isValid function per individual subform.
Can someone post a link or sample code so I can learn how to do this please.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 Zend_Validate_Callback http://framework.zend.com/manual/en /zend.validate.set.html 仅验证您想要的特殊字段。您可以通过上下文访问其他字段值。
Try using Zend_Validate_Callback http://framework.zend.com/manual/en/zend.validate.set.html to validate just the special fields you want. You can access other field values through the context.