Domanda

I'm using Kohana 3.3. I use ORM for validation form, by determining some rules.

I would like to make a radio button required. I have three options, and no one can be checked in advance.

I've searched on web, no doc.

Someone has an idea ?

Thanks

È stato utile?

Soluzione

Just use not_empty rule:

public function rules()
{
        return array(
            'your_field_name' => array(
                array('not_empty'),
            ),
        );
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top