I am new to bootstrap and recently encountered a situation similar to the scenario depicted in the image below:
https://i.sstatic.net/OtKjA.png
In the first image, the input field labeled "manipuleo" is visible, but in the second image, it is hidden. I would like to dynamically fill the empty space left by hiding "manipuleo" with the next input field (in this case, "Impuesto Producto"). Is this achievable using Bootstrap and jQuery?
Below is the code structure I am working with:
@ControlGAS.Office.Resources.Resources.ControlGAS.ComplementaryData
<div id="SectionCommonInputs">
<div class="form-group form-material floating row">
<div id="OptHazardousCLSId" style="display:none" class="col-md-4">
</div>
<div id="OptWasteMgmtCLSId" style="display:none" class="col-md-4">
</div>
<div id="OptHandlingSpecialSCLSId" style="display:none" class="col-md-4">
</div>
</div>
<div class="form-group form-material floating row">
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
</div>
</div>