Commit 3448b7f9 by chenith Committed by Harsh Shah

Updated grid view in Application shortlist.

parent a21537de
...@@ -3350,6 +3350,10 @@ input.add-note-btn:hover{ ...@@ -3350,6 +3350,10 @@ input.add-note-btn:hover{
.expand-btn > img { .expand-btn > img {
margin-left: 15px; margin-left: 15px;
} }
.expand-btn a{
color: #ffffff;
}
.app-line-br{ .app-line-br{
float: left; float: left;
width: 100%; width: 100%;
...@@ -3754,9 +3758,9 @@ span.right-img { ...@@ -3754,9 +3758,9 @@ span.right-img {
position: relative; position: relative;
top: -4px; top: -4px;
} }
.grid-box-view { /*.grid-box-view {
margin-bottom: 195px; margin-bottom: 195px;
} }*/
/*View Applicants HT005 - Shortlist End*/ /*View Applicants HT005 - Shortlist End*/
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
String currentPage = (String) getData(request, "currentPage"); String currentPage = (String) getData(request, "currentPage");
AppSortOption appSortOpt = (AppSortOption) getData(request, "sortOption"); AppSortOption appSortOpt = (AppSortOption) getData(request, "sortOption");
String tabNumber = (String) getData(request, "tabNumber"); String tabNumber = (String) getData(request, "tabNumber");
Boolean expand = getData(request, "expand")!=null ? (Boolean) getData(request, "expand") : Boolean.FALSE;
%> %>
...@@ -63,7 +64,8 @@ ...@@ -63,7 +64,8 @@
<% <%
for (AppSortOption sortOption : AppSortOption.getAppSortOptionArray()) for (AppSortOption sortOption : AppSortOption.getAppSortOptionArray())
{ {
String optionLink = currentPage + "&JobID=" + job.getID() + "&AppSortOption=" + sortOption.getName() ; String optionLink = currentPage + "&JobID=" + job.getID() + "&AppSortOption=" + sortOption.getName()
+ (expand ? "&Expand=Y" : "");
%> %>
<option <%= (appSortOpt != null && appSortOpt == sortOption ? "selected" : "" )%> value="<%= optionLink %>"> <option <%= (appSortOpt != null && appSortOpt == sortOption ? "selected" : "" )%> value="<%= optionLink %>">
<oneit:toString value="<%= sortOption.getDescription() %>" mode="EscapeHTML"/> <oneit:toString value="<%= sortOption.getDescription() %>" mode="EscapeHTML"/>
......
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