Skip to content

Commit

Permalink
MID-1724 - fixed subissue 8. - bad styles of checkboxes on some place…
Browse files Browse the repository at this point in the history
…s in UI causes them to look wrong.
  • Loading branch information
Erik Suta committed Mar 13, 2014
1 parent bba2696 commit 584509d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
Expand Up @@ -25,7 +25,7 @@

<div class="col-lg-8">
<label class="col-lg-2 checkbox-inline">
<input type="checkbox" class="form-control" wicket:id="edit" />
<input type="checkbox" wicket:id="edit" />
<wicket:message key="pageResourceEdit.edit"/>
</label>
</div>
Expand Down
Expand Up @@ -24,7 +24,7 @@

<div class="col-lg-8">
<label class="col-lg-2 checkbox-inline">
<input type="checkbox" class="form-control" wicket:id="edit" />
<input type="checkbox" wicket:id="edit" />
<wicket:message key="pageRole.edit"/>
</label>
</div>
Expand Down
Expand Up @@ -37,15 +37,15 @@ <h3><wicket:message key="pageTask.basic"/></h3>
</tr>
<tr>
<td><wicket:message key="pageTask.runUntilNodeDown"/></td>
<td><input class="form-control input-sm" type="checkbox" wicket:id="runUntilNodeDown"/></td>
<td><input class="input-sm" type="checkbox" wicket:id="runUntilNodeDown"/></td>
</tr>
</table>

<h3><wicket:message key="pageTask.advancedOption"/></h3>
<table class="table table-condensed table-striped">
<tr>
<td><wicket:message key="pageTask.createSuspended"/></td>
<td><input class="form-control input-sm" type="checkbox" wicket:id="createSuspended"/></td>
<td><input class="input-sm" type="checkbox" wicket:id="createSuspended"/></td>
</tr>
<tr>
<td><wicket:message key="pageTask.threadStop"/></td>
Expand All @@ -65,7 +65,7 @@ <h3><wicket:message key="pageTask.scheduleTitle"/><br />
<tbody>
<tr>
<td><wicket:message key="pageTask.recurring"/></td>
<td><input class="form-control input-sm" type="checkbox" wicket:id="recurring"/></td>
<td><input class="input-sm" type="checkbox" wicket:id="recurring"/></td>
</tr>
</tbody>
<tbody wicket:id="container">
Expand All @@ -74,7 +74,7 @@ <h3><wicket:message key="pageTask.scheduleTitle"/><br />
<wicket:message key="pageTask.bound"/>
<i wicket:id="boundHelp" wicket:message="title:pageTask.boundHelp"/>
</td>
<td><input class="form-control input-sm" type="checkbox" wicket:id="bound"/></td>
<td><input class="input-sm" type="checkbox" wicket:id="bound"/></td>
</tr>
<tr wicket:id="intervalContainer">
<td><wicket:message key="pageTask.scheduleInterval"/></td>
Expand Down Expand Up @@ -125,6 +125,7 @@ <h3><wicket:message key="pageTask.scheduleTitle"/><br />
<div class="main-button-bar">
<span class="button-group">
<a class="btn btn-default" wicket:id="backButton" />

</span>
<a class="btn btn-primary" wicket:id="saveButton"/>
</div>
Expand Down
Expand Up @@ -85,7 +85,7 @@ <h2><wicket:message key="pageTaskEdit.scheduleTitle"/><br />
<tr>
<td><wicket:message key="pageTaskEdit.recurring"/></td>
<td>
<input type="checkbox" class="form-control input-sm" wicket:id="recurring"/>
<input type="checkbox" class="input-sm" wicket:id="recurring"/>
<span wicket:id="suspendReqRecurring" class="text-warning"><wicket:message key="pageTaskEdit.suspendReq"/></span>
</td>
</tr>
Expand All @@ -97,7 +97,7 @@ <h2><wicket:message key="pageTaskEdit.scheduleTitle"/><br />
<i wicket:id="boundHelp" wicket:message="title:pageTaskEdit.boundHelp"/>
</td>
<td>
<input type="checkbox" class="form-control input-sm" wicket:id="bound"/>
<input type="checkbox" class="input-sm" wicket:id="bound"/>
<span wicket:id="suspendReqBound" class="text-warning"><wicket:message key="pageTaskEdit.suspendReq"/></span>
</td>
</tr>
Expand Down
Expand Up @@ -283,6 +283,7 @@ protected void rowSelected(AjaxRequestTarget target, IModel<OrgTableDto> row, Op

}

//TODO - continue here - make sure that this query is not overwritten by query from createQueryFromSelected()
private ObjectQuery createQuery(){
OrgUnitSearchDto dto = searchModel.getObject();
ObjectQuery query = null;
Expand Down

0 comments on commit 584509d

Please sign in to comment.