To add drop down list in resume form.
- Add field in database table
- Add field in resume table class '../administrator/components/com_jsjobs/tables/resume.php'
- May add field in field ordering table.
Add this code in resume form
<?php
$fieldname_values = array(
'0' => array('value' => 1,'text' => JText::_('Value 1')),
'1' => array('value' => 2,'text' => JText::_('Value 2')),
'2' => array('value' => 3,'text' => JText::_('Value 1')),);
if($this->resume)
$fieldname_list = JHTML::_('select.genericList', $field_name_values, 'fieldname', 'class="inputbox" '. '', 'value', 'text', $this->resume->fieldname);
else
$fieldname_list = JHTML::_('select.genericList', $field_name_values, 'fieldname', 'class="inputbox" '. '', 'value', 'text', '');
echo $fieldname_list;
?>
- May you also need to change view_resume.php to display value.