Welcome Guest, Not a member yet? Register   Sign In
Help Needed with Dropdown Selection
#2

[eluser]LuckyFella73[/eluser]
You can set a default entry for your dropdown where
the value is '' - for example:
Code:
$options = array(
                  ''  => 'please select',
                  'value_1'    => 'Cars',
                  'value_2'   => 'Planes',
                  'value_3' => 'Ships',
                );

In your controller set the validation rule for that element like:
$this->form_validation->set_rules('select_name', 'Example Select', 'required');

Don't forget to load the form validation class of course..


Messages In This Thread
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 06:10 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 06:21 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 06:42 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 06:47 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 07:12 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 07:26 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 07:37 AM
Help Needed with Dropdown Selection - by El Forum - 10-22-2010, 07:41 AM



Theme © iAndrew 2016 - Forum software by © MyBB