I need the code for checkboxlist in joomla - Joomla! Forum - community, help and support
for radio used code works
view/final/tmp/edit.php
<td><?php echo jhtml::_('select.radiolist',$this->genders,'gender','class="inputbox " size="1" ', 'text', 'value', $this->userdata->gender); ?></td>
view/final/view.html.php
$this->genders = array((object)array("text"=>"male","value"=>"male"),(object)array("text"=>"female", "value"=>"female"));
for checkbox not working
view/final/tmp/edit.php
<?php echo jhtml::_('select.genericlist',$this->qualifications,'qualification','class="inputbox" size="1" ','text','value',$this->userdata->qualification);?>
view/final/view.html.php
$this->country= array((object)array("text"=>"select","value"=>"select"),(object)array("text"=>"india","value"=>"india"),(object)array("text"=>"usa","value"=>"usa"),(object)array("text"=>"france","value"=>"france"));
please me new bee joomla 2.5
view/final/tmp/edit.php
<td><?php echo jhtml::_('select.radiolist',$this->genders,'gender','class="inputbox " size="1" ', 'text', 'value', $this->userdata->gender); ?></td>
view/final/view.html.php
$this->genders = array((object)array("text"=>"male","value"=>"male"),(object)array("text"=>"female", "value"=>"female"));
for checkbox not working
view/final/tmp/edit.php
<?php echo jhtml::_('select.genericlist',$this->qualifications,'qualification','class="inputbox" size="1" ','text','value',$this->userdata->qualification);?>
view/final/view.html.php
$this->country= array((object)array("text"=>"select","value"=>"select"),(object)array("text"=>"india","value"=>"india"),(object)array("text"=>"usa","value"=>"usa"),(object)array("text"=>"france","value"=>"france"));
please me new bee joomla 2.5
Comments
Post a Comment