3
<?php
class Form_Audience extends Zend_Form_SubForm
{
public function init()
{
$this->setMethod('post');
$this->setLegend('Audience Details');
$this->addElement('text', 'audience_total', array(
'label' => 'Audience Total :',
'required' => true,
'filters' => array('Digits'),
'size' => 15,
'validators' => array(
'Digits',
)
));
.... remaining code .....
請幫助修改上述代碼以應用GreaterThan驗證。若要添加驗證GreaterThan - Zend表格
感謝
感謝回覆,可以請你告訴我,你將如何修改上面的代碼做同樣的事情。 – Ish 2009-08-12 12:41:15
基本上用我的塊代替$ this-> addElement ...行。 – 2009-08-12 14:56:23