since NoWicket generates html code with bootstrap I tried to do two columns form adding a div of class "row" but without luck:
<div class="row">
<div class="form-group">
<label class="control-label col-sm-2" wicket:for="ricerca">
<wicket:label>
Ricerca
</wicket:label>
</label>
<div wicket:id="ricerca_gridColumn" class="col-sm-4">
<input type="text" class="form-control" wicket:id="ricerca">
</div>
</div>
<div class="form-group">
<div wicket:id="auto_gridColumn" class="col-sm-offset-2 col-sm-4">
<div class="checkbox">
<label wicket:for="auto">
<input type="checkbox" wicket:id="auto">
<wicket:label>
Auto
</wicket:label>
</label>
</div>
</div>
</div>
</div>