Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanleantking/6d699f6945c35be3008737cd5eb936c5 to your computer and use it in GitHub Desktop.
Save vanleantking/6d699f6945c35be3008737cd5eb936c5 to your computer and use it in GitHub Desktop.
Create custom value checkbox on Zend FrameWork
$this->add(array(
'name' => 'status',
'type' => 'Checkbox',
'options' => array(
'checked_value' => 'A',
'unchecked_value' => 'S'
),
'attributes' => array(
'id' => 'status',
'class' => 'form-control ',
// 'title' => 'Vui lòng nhập thông tin này',
),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment