Skip to content

Commit

Permalink
Merge pull request #2 from cdwijayarathna/add
Browse files Browse the repository at this point in the history
UI improvements
  • Loading branch information
cdwijayarathna committed May 18, 2016
2 parents 18da791 + 1a765e1 commit 3e3bb37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

add.tenant.config=Add
add.tenant.config.menu=Account/Password Management
add.tenant.config.menu=Governance
add.tenant.config.header=Add Tenant Configuration Details
identity.listner.enable=Identity Listner Enable
notification.sending.enable=Notification Sending Enable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,13 @@
<div id="middle">

<h2>
Add Configuration Details
Identity Governance
</h2>

<div id="workArea">
<form id="addTenantConfigurationForm" name="addTenantConfigurationForm" action="add_config_ajaxprocessor.jsp"
method="post">
<% Map<String, String> configurations = new HashMap<String, String>();
int i=0;
<%
List<String> values = new ArrayList<String>() {{
add("true");
add("false");
Expand All @@ -108,16 +107,16 @@

<%for (int j = 0; j < configs.length; j++) {%>
<h2 id="role_permission_config_head22" class="active trigger">
<a href="#"><%=Encode.forHtmlAttribute(configs[i].getFriendlyName())%>
<a href="#"><%=Encode.forHtmlAttribute(configs[j].getFriendlyName())%>
</a>
</h2>

<div class="toggle_container sectionSub" style="margin-bottom:10px; display: none;" id="roleConfig2">

<table>
<table class="carbonFormTable">

<%
Property[] connectorProperties = configs[i].getProperties();
Property[] connectorProperties = configs[j].getProperties();
for(int k = 0; k < connectorProperties.length; k++) {%>
<tr>
<td>
Expand Down

0 comments on commit 3e3bb37

Please sign in to comment.