Bonjour,
Je ne suis pas très bon en dev, mais je cherche à masquer un fildset et à montrer un autre fildset en fonction du choix d'une option.
Si on a type_id=2 alors on montre
<fieldset>
<legend><?php echo JText::_('Informations financière Fond de Commerce')?></legend>
<ul class="adminformlist">
<?php foreach ($this->form->getFieldset('financial_informations_fdc') as $field): ?>
<li><?php echo $field->label . "\n" . $field->input ?></li>
<?php endforeach ?>
</ul>
</fieldset>
Si on a type_id autre que 2 on montre :
<fieldset>
<legend><?php echo JText::_('COM_JEA_FINANCIAL_INFORMATIONS')?></legend>
<ul class="adminformlist">
<?php foreach ($this->form->getFieldset('financial_informations') as $field): ?>
<li><?php echo $field->label . "\n" . $field->input ?></li>
<?php endforeach ?>
</ul>
</fieldset>
Je ne suis pas très bon en dev, mais je cherche à masquer un fildset et à montrer un autre fildset en fonction du choix d'une option.
Si on a type_id=2 alors on montre
<fieldset>
<legend><?php echo JText::_('Informations financière Fond de Commerce')?></legend>
<ul class="adminformlist">
<?php foreach ($this->form->getFieldset('financial_informations_fdc') as $field): ?>
<li><?php echo $field->label . "\n" . $field->input ?></li>
<?php endforeach ?>
</ul>
</fieldset>
Si on a type_id autre que 2 on montre :
<fieldset>
<legend><?php echo JText::_('COM_JEA_FINANCIAL_INFORMATIONS')?></legend>
<ul class="adminformlist">
<?php foreach ($this->form->getFieldset('financial_informations') as $field): ?>
<li><?php echo $field->label . "\n" . $field->input ?></li>
<?php endforeach ?>
</ul>
</fieldset>
Commentaire