Commit c20d1642 by Nilu Committed by Harsh Shah

Showing - works - Default setting is 'All' (unless sticky for a context)

parent fc546f3e
......@@ -3529,6 +3529,10 @@ input.add-note-btn:hover{
font-weight: 300;
float: right;
}
.appli-percent-no first span
{
font-family: "Usual-Regular";
}
.appli-percent-no span{
font-family: "Usual-Light";
}
......
......@@ -51,7 +51,7 @@
Overall rank
</div>
<!--TODO: logic needed to be worked out. Added to note that there are three colors-->
<div class="<%= "appli-percent-no " + (j == 0 ? "green" : (j < 3 ? "blue" : "grey" ))%>">
<div class="<%= "appli-percent-no " + (j == 0 ? "first green" : (j < 3 ? "blue" : "grey" ))%>">
<oneit:toString value="<%= jobApplication.getOverallSuitability() %>" mode="Integer" />
</div>
</div>
......
......@@ -43,9 +43,10 @@
if(closingSoonJobs > 0)
{
%>
<oneit:button value=" " name="gotoPage" skin="link"
<oneit:button value=" " name="navigateBetweenStatus" skin="link"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", jobsPage)
.mapEntry("procParams", CollectionUtils.mapEntry("JobStatus", JobStatus.OPEN).mapEntry("JobSortOption", JobSortOption.CLOSING_SOON).toMap())
.mapEntry("JobStatus", JobStatus.OPEN)
.mapEntry("procParams", CollectionUtils.mapEntry("JobSortOption", JobSortOption.CLOSING_SOON).toMap())
.toMap() %>">
<div class="arrow-btn">
<oneit:toString value="<%= closingSoonJobs %>" mode="Integer" nullValue="0"/> closing soon
......@@ -68,9 +69,9 @@
if(filledCount > 0)
{
%>
<oneit:button value=" " name="gotoPage" skin="link"
<oneit:button value=" " name="navigateBetweenStatus" skin="link"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", jobsPage)
.mapEntry("procParams", CollectionUtils.mapEntry("JobStatus", JobStatus.FILLED).toMap())
.mapEntry("JobStatus", JobStatus.FILLED)
.toMap() %>">
<oneit:toString value="<%= filledCount %>" mode="Integer" nullValue="0"/>
</oneit:button>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment