Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
96db5cc0
Commit
96db5cc0
authored
Apr 10, 2018
by
chenith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HT004/HT054 - Reqs - Display the "supporting notes"
parent
8a5e7617
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
4 deletions
+40
-4
common.css
cmsWebApp/webroot/css/common.css
+8
-0
view_application_tab_applicant.jsp
...nsions/adminportal/inc/view_application_tab_applicant.jsp
+27
-4
view_application.jsp
...ebApp/webroot/extensions/adminportal/view_application.jsp
+5
-0
No files found.
cmsWebApp/webroot/css/common.css
View file @
96db5cc0
...
...
@@ -6162,4 +6162,11 @@ input{
.card-payment
.btn-right
{
text-align
:
right
;
}
.info-panel
p
{
line-height
:
0.5
;
color
:
#7d7f82
;
font-size
:
10px
;
padding-top
:
5px
;
}
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/inc/view_application_tab_applicant.jsp
View file @
96db5cc0
...
...
@@ -74,6 +74,8 @@
});
tabToggle("#tab1", ".role-fit");
$("#accordion-1" ).accordion();
});
</script>
<div class="main-applicant-content dashboard-content-area v-applicant-area ">
...
...
@@ -461,13 +463,34 @@
<span class="common-dot <%= dotClass %>"></span>
<oneit:toString value="<%= answer.getAssessmentCriteria().getCriteriaType() %>" mode="EscapeHTML"/>
</div>
<div class="detail-tab-row-text col-md-
8 col-sm-8 col-xs-8" style="width: 65
%">
<div class="detail-tab-row-text col-md-
7 col-sm-7 col-xs-7" style="width: 60
%">
<oneit:toString value="<%= answer.getAssessmentCriteria() %>" mode="EscapeHTML"/>
<span style="padding-left: 10px; float: right">
<oneit:toString value="<%= answer.getAnswer() ? "Yes" : "No" %>" mode="EscapeHTML"/>
</span>
</div>
<div class="detail-tab-row-text col-md-1 col-sm-1 col-xs-1" style="width: 10%; line-height: 0.1;">
<oneit:toString value="<%= answer.getAnswer() ? "Yes" : "No" %>" mode="EscapeHTML"/>
<%
if(answer.getNotes()!=null)
{
%>
<span class="info-toggle" style="padding-left: 10px; display: inline-block; font-weight: bold; font-size: 15px;">
ⓘ
</span>
<%
}
%>
</div>
</div>
<%
if(answer.getNotes()!=null)
{
%>
<div class="tab-row info-panel" style=" padding: 0 31.5%; display: none; background-color: white;overflow: hidden; color: #7d7f82; font-size: 10px; ">
<oneit:toString value="<%= answer.getNotes() %>" mode="ParagraphHTML"/>
</div>
<%
}
%>
<%
}
%>
...
...
cmsWebApp/webroot/extensions/adminportal/view_application.jsp
View file @
96db5cc0
...
...
@@ -93,6 +93,11 @@
showPercent: true
});
$(".info-toggle").click(function(){
// alert('sdfdsf')
$(this).parent('div').parent('.tab-row').next('.info-panel').slideToggle();
});
});
</script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment