Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4106796
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T21:25:21+00:00 2026-05-20T21:25:21+00:00

I want know how to add custom attribute for option in a select field

  • 0

I want know how to add custom attribute for option in a select field of Zend form.

PHP:

$option_values = array("multiOptions" => array(
    "US" => "United States",
    "CA" => "Canada",
));

$type=array('big','small');
$option= new Zend_Form_Element_Select('option',  $option_values);

HTML:

<select>
    <option value='US' type='big'>United States</option>
    <option value='CA' type='small'>Canada</option>
</select>

How to add this type attribute in the option?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T21:25:22+00:00Added an answer on May 20, 2026 at 9:25 pm

    It is not possible using ZF’s implementation of Zend_Form_Element_Select. You need to create your own element. I have done something similar, here’s the relevant code:

    <?php
    require_once 'Zend/Form/Element/Select.php';
    
    /**
     * Select, but with the possibility to add attributes to <option>s
     * @author Dominik Marczuk
     */
    class Zend_Form_Element_SelectAttribs extends Zend_Form_Element {
    
        public $options = array();
    
        public $helper = 'selectAttribs';
    
        /**
         * Adds a new <option>
         * @param string $value value (key) used internally
         * @param string $label label that is shown to the user
         * @param array $attribs additional attributes
         */
        public function addOption ($value,$label = '',$attribs = array()) {
            $value = (string) $value;
            if (!empty($label)) $label = (string) $label;
            else $label = $value;
            $this->options[$value] = array(
                'value' => $value,
                'label' => $label
            ) + $attribs;
            return $this;
        }
    }
    

    Put this into /library/Zend/Form/Element/SelectAttribs.php. You also need a helper to render the element. Put it into your view helpers directory, name it SelectAttribs.php as well. Here’s the contents of my file:

    <?php
    require_once 'Zend/View/Helper/FormElement.php';
    
    class Zend_View_Helper_SelectAttribs extends Zend_View_Helper_FormElement {
        public function selectAttribs($name, $value = null, $attribs = null, $options = null, $listsep = "<br />\n") {
            $info = $this->_getInfo($name, $value, $attribs, $options, $listsep);
            extract($info); // name, id, value, attribs, options, listsep, disable
    
            // force $value to array so we can compare multiple values to multiple
            // options; also ensure it's a string for comparison purposes.
            $value = array_map('strval', (array) $value);
    
            // now start building the XHTML.
            $disabled = '';
            if (true === $disable) {
                $disabled = ' disabled="disabled"';
            }
    
            // Build the surrounding select element first.
            $xhtml = '<select'
                    . ' name="' . $this->view->escape($name) . '"'
                    . ' id="' . $this->view->escape($id) . '"'
                    . $disabled
                    . $this->_htmlAttribs($attribs)
                    . ">\n  ";
    
            // build the list of options
            $list = array();
            $translator = $this->getTranslator();
            foreach ($options as $opt_value => $option) {
                $opt_disable = '';
                if (is_array($disable) && in_array($opt_value, $disable)) {
                    $opt_disable = ' disabled="disabled"';
                }
                $list[] = $this->_build($option, $disabled);
            }
    
            // add the options to the xhtml and close the select
            $xhtml .= implode("\n   ", $list) . "\n</select>";
    
            return $xhtml;
        }
    
        protected function _build($option, $disabled) {
            $html = '<option';
            foreach ($option as $attrib => $value) {
                $html .= " $attrib=\"$value\"";
            }
            return $html.$disabled.">".$option['label']."</option>";
        }
    }
    

    With this, you should be ready to go:

    $elt = new Zend_Form_Element_SelectAttribs('whatever');
    $elt->addOption($value,$label,array('attribname' => 'attribvalue'));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know if i can create a custom google maps application,on which
i want to know how to edit a single row (which i select) from
I want to use boost::thread_specific_ptr but need to know what to add to my
Want to know what the stackoverflow community feels about the various free and non-free
I want to know what a virtual base class is and what it means.
I want to know what are the options to do some scripting jobs in
I want to know what exactly is the sequence of calls that occurs when
I want to know which tool can be used to measure the cyclomatic complexity
I want to know how to use variables for objects and function names in
I want to know how does the SQL Server know what @p# is in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.