Issues with the Bootstrap form template

jfquestiaux

Well-Known Member
This is an issue I had since the GitHub update 646:

  • You can't select a value in a dropdown list because as soon as you leave the "trigger", the window closes. I think what changhed since upgrading to 3.1b + GitHub17 this morning is that now the first dropdown in the list (being visible or not) works correctly.
    See the screenshot : http://screencast.com/t/ik8pAEs5C9g1
  • Maybe it is on purpose, but the tooltip positions above, side, bottom are not available anymore (they are removed from the code). is it permanent?
 
You can't select a value in a dropdown list because as soon as you leave the "trigger", the window closes.
Seemed to be an obscure bootstrap css issue, should be fixed now

Maybe it is on purpose, but the tooltip positions above, side, bottom are not available anymore (they are removed from the code). is it permanent?
The option is still in the code - tip location is controlled in the form setting's options->tip location
 
The dropdown bug is fixed. Thank you.

For the tooltips, the code is indeed still there, but there is a typo (only the "above" works). In default_group_labels_above.php and in default_group_labels_side.php

Code:
<?php if ($this->tipLocation == 'side') : ?>
        <span class="help-block"><?php echo $element->tipAbove ?></span>
    <?php endif ?>

    <?php if ($this->tipLocation == 'below') :?>
        <span class="help-block"><?php echo $element->tipAbove ?></span>
    <?php endif ?>

should read:

Code:
<?php if ($this->tipLocation == 'side') : ?>
        <span class="help-block"><?php echo $element->tipSide ?></span>
    <?php endif ?>

    <?php if ($this->tipLocation == 'below') :?>
        <span class="help-block"><?php echo $element->tipBelow ?></span>
    <?php endif ?>
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top