Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JFormFieldCombo
+ Graphe d'héritage de JFormFieldCombo:
+ Graphe de collaboration de JFormFieldCombo:

Liste de tous les membres

Fonctions membres protégées

 getInput ()
- Fonctions membres protégées inherited from JFormFieldList
 getOptions ()
- Fonctions membres protégées inherited from JFormField
 getId ($fieldId, $fieldName)
 getTitle ()
 getLabel ()
 getName ($fieldName)
 getFieldName ($fieldName)

Attributs protégés

 $type = 'Combo'
- Attributs protégés inherited from JFormFieldList
- Attributs protégés inherited from JFormField
 $description
 $hint
 $autocomplete = 'on'
 $spellcheck = true
 $autofocus = false
 $element
 $form
 $formControl
 $hidden = false
 $translateLabel = true
 $translateDescription = true
 $translateHint = true
 $id
 $input
 $label
 $multiple = false
 $pattern
 $name
 $fieldname
 $group
 $required = false
 $disabled = false
 $readonly = false
 $validate
 $value
 $default
 $size
 $class
 $labelClass
 $onchange
 $onclick

Description détaillée

Définition à la ligne 22 du fichier combo.php.


Documentation des fonctions membres

JFormFieldCombo::getInput ( )
protected

Method to get the field input markup for a combo box field.

Renvoie:
string The field input markup.
Depuis:
11.1

Réimplémentée à partir de JFormFieldList.

Définition à la ligne 39 du fichier combo.php.

{
$html = array();
$attr = '';
// Initialize some field attributes.
$attr .= !empty($this->class) ? ' class=combobox"' . $this->class . '"' : ' class="combobox"';
$attr .= $this->readonly ? ' readonly' : '';
$attr .= $this->disabled ? ' disabled' : '';
$attr .= !empty($this->size) ? ' size="' . $this->size . '"' : '';
$attr .= $this->required ? ' required aria-required="true"' : '';
// Initialize JavaScript field attributes.
$attr .= $this->onchange ? ' onchange="' . $this->onchange . '"' : '';
// Get the field options.
$options = $this->getOptions();
// Load the combobox behavior.
JHtml::_('behavior.combobox');
$html[] = '<div class="combobox input-append">';
// Build the input for the combo box.
$html[] = '<input type="text" name="' . $this->name . '" id="' . $this->id . '" value="'
. htmlspecialchars($this->value, ENT_COMPAT, 'UTF-8') . '"' . $attr . ' autocomplete="off" />';
$html[] = '<div class="btn-group">';
$html[] = '<button type="button" class="btn dropdown-toggle">';
$html[] = ' <span class="caret"></span>';
$html[] = '</button>';
// Build the list for the combo box.
$html[] = '<ul class="dropdown-menu">';
foreach ($options as $option)
{
$html[] = '<li><a href="#">' . $option->text . '</a></li>';
}
$html[] = '</ul>';
$html[] = '</div></div>';
return implode($html);
}

Documentation des données membres

JFormFieldCombo::$type = 'Combo'
protected

Réimplémentée à partir de JFormFieldList.

Définition à la ligne 30 du fichier combo.php.


La documentation de cette classe a été générée à partir du fichier suivant :