Commit 06073ba7 by Nilu

S12520201 # Client - Incoming Issues (raised by Client) #Job Industry…

S12520201 # Client - Incoming Issues (raised by Client) #Job Industry Classification to come from Hiring Team as-per scope
parent dcae1b66
...@@ -27,7 +27,18 @@ ...@@ -27,7 +27,18 @@
company.setCompletedProfile(Boolean.TRUE); company.setCompletedProfile(Boolean.TRUE);
%> %>
<script type="text/javascript">
$(document).ready(function()
{
$('input[type="text"][id$="Industry"]').blur(function(){
if($(this).next().val() === ""){
$(this).val('');
}
});
$('input[type="text"][id$="Industry"]').attr('placeholder','Please select an Industry');
});
</script>
<div class="hello-company-name">Hello, <%= secUser.getFirstName() %></div> <div class="hello-company-name">Hello, <%= secUser.getFirstName() %></div>
<div class="section-tab-view"> <div class="section-tab-view">
...@@ -68,7 +79,7 @@ ...@@ -68,7 +79,7 @@
<div class="form-group"> <div class="form-group">
<label><oneit:label GUIName="Industry" /></label> <label><oneit:label GUIName="Industry" /></label>
<oneit:ormEnum obj="<%= hiringTeam %>" attributeName="Industry" cssClass="form-control"/> <oneit:ormEnum obj="<%= hiringTeam %>" attributeName="Industry" cssClass="form-control" displayType="autocomplete" showBlankEnum="Please select"/>
</div> </div>
<div class="form-group"> <div class="form-group">
......
...@@ -142,7 +142,13 @@ ...@@ -142,7 +142,13 @@
} }
}); });
$('input[type="text"][id$="Industry"]').blur(function(){
if($(this).next().val() === ""){
$(this).val('');
}
});
$('input[type="text"][id$="Industry"]').attr('placeholder','Please select an Industry');
}); });
...@@ -361,7 +367,7 @@ ...@@ -361,7 +367,7 @@
<div class="form-group row"> <div class="form-group row">
<div class="col-md-6"> <div class="col-md-6">
<label><oneit:label GUIName="Industry Classification" /></label> <label><oneit:label GUIName="Industry Classification" /></label>
<oneit:ormEnum obj="<%= job %>" attributeName="Industry" cssClass="form-control"/> <oneit:ormEnum obj="<%= job %>" attributeName="Industry" cssClass="form-control" displayType="autocomplete"/>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<label><oneit:label GUIName="Job Occupation Classification" /></label> <label><oneit:label GUIName="Job Occupation Classification" /></label>
......
...@@ -72,7 +72,13 @@ ...@@ -72,7 +72,13 @@
PopupAlert.close(); PopupAlert.close();
}); });
$('input[type="text"][id$="Industry"]').blur(function(){
if($(this).next().val() === ""){
$(this).val('');
}
});
$('input[type="text"][id$="Industry"]').attr('placeholder','Please select an Industry');
}); });
...@@ -175,7 +181,7 @@ ...@@ -175,7 +181,7 @@
<div class="form-group row"> <div class="form-group row">
<div class="col-md-6"> <div class="col-md-6">
<label><oneit:label GUIName="Industry" /></label> <label><oneit:label GUIName="Industry" /></label>
<oneit:ormEnum obj="<%= hiringTeam %>" attributeName="Industry" cssClass="form-control" displayType="autocomplete"/> <oneit:ormEnum obj="<%= hiringTeam %>" attributeName="Industry" cssClass="form-control"/>
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
......
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