Trying to achieve a Bootstrap textfield embedded in a panel that spans 100% of the remaining space-width within the panel. However, this is the result obtained:
The blue border represents the edge of the panel.
Below is the code being used:
<div class="input-group ">
<div class="input-group input-group-lg">
<a id="pdfUrlButton" class="input-group-btn btn btn-default go inline"><span class="glyphicon glyphicon-folder-open"></span>Choose File </a>
<input id="pdfLoc" type="text" class="form-control disabled" placeholder="No schedule chosen yet">
<input type="file" name="pdfUrl" id="pdfUrl" class="hidden"/>
</div>
<div id="pdfAlert" class="alert alert-danger hide">This is not a PDF!</div>
</div>
Despite referencing similar questions, I am unable to make it work with the solutions found.