Welcome Guest, Not a member yet? Register   Sign In
Dropdown default value
#1

[eluser]Ninja[/eluser]
Controller
Code:
$client = new Client();
            $client->get('id');
    
            foreach($client->all as $entry)
            {
                $clientID = $entry->id;
                $entry->company->get('companyname');
                $companyName = $entry->company->companyname;
                $data['parent'][$clientID] = $companyName;    
            }

View
Code:
<?php echo form_dropdown('Parent', $parent )?>

Im trying to set the default value for the dropdown to something like “Not Applicable”
With an index of 0. This dropdown is for Parent clients (ie. The client of a client) but not all clients will have a parent client.
I cant set the 3rd parameter to "Not Applicable" with index 0 because its not in the array. and i cant seem to add it to the array because the array is populated from a database table Clients which contains 3 fields:
id serial,
parent_client interger,
company_id,


Messages In This Thread
Dropdown default value - by El Forum - 07-17-2009, 12:17 AM
Dropdown default value - by El Forum - 07-17-2009, 04:26 AM
Dropdown default value - by El Forum - 07-17-2009, 04:38 AM
Dropdown default value - by El Forum - 07-17-2009, 04:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB