The Joomla! Forum ™



Forum rules


Please use the mailing list here: http://groups.google.com/group/joomla-dev-general rather than this forum.



Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: checkbox selected
PostPosted: Mon May 20, 2013 10:55 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Jun 30, 2010 2:30 pm
Posts: 6
hi everyone

Im overriding field JFormFieldCheckboxes to show a custom checkboxes field

Code:
class JFormFieldCheckboxes extends JFormField
{           
...

   protected function getOptions()
   {
...
// Create a new option object based on the <option /> element.
$tmp = JHtml::_(
        'select.option',
        (string) $option['value'],
        trim((string) $option),
        'value',
        'text',
        ((string) $option['disabled'] == 'true')
)
// Add the option object to the result set.
$options[] = $tmp;



how to set some checkboxes selected???

I cant find class JOption in joomla code so to understand the mechanism
and I cant understand how joomla class documentation works
bye an thanks for answers


Top
 Profile  
 
 Post subject: Re: checkbox selected
PostPosted: Mon May 20, 2013 12:12 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Jun 30, 2010 2:30 pm
Posts: 6
so
I cant find class JOption in joomla code so to understand the mechanism
and I cant understand how joomla class documentation works
bye an thanks for answerslved

I dont know if option object has got a property like 'selected'
but class JFormFieldCheckboxes set attribute selected in html and so do I

Code:
class JFormFieldCheckboxes extends JFormField
{           
...
protected function getInput()
{
      
    // Initialize some option attributes.
      $checked = (in_array((string) $option->value, (array) $this->value) ? ' checked="checked"' : '');
                $html[] = '<input type="checkbox" ' . $checked .'/>';
...


I am working to understand how joomla documentation is structured
bye


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 



Who is online

Users browsing this forum: No registered users and 11 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group