<%
if (cellItem.getIcon()!=null && cellItem.getIcon().length() > 0) {
%>
<%
} else if (columnField.equalsIgnoreCase("priority")) { // Need to customize this column to handle a text field and a pulldown menu.
%>
<%=prioritycounter%>
<% } else if (columnField.equalsIgnoreCase("rule")) {
%>
<%
String handShow = "none";
String quickEdit = "block";
if (matchExpression.equals("")) {
handShow = "block";
quickEdit = "none";
}
%>
<% if (matchExpression.equals("")) { %>
<%
if (!SecurityContext.isSecurityEnabled() ||
(request.isUserInRole("administrator") || request.isUserInRole("configurator") || request.isUserInRole("deployer"))) {
%>
[
]
<% } %>
<% } else {
String routingAction = "";
String matchActionItem = "";
%>
<%=matchExpression%>
<% if (wcview == WorkClassConstants.WCVIEW_SERVICE) {%>
<% } else { %>
<% routingAction = ((MatchRuleDetailForm) listcheckbox).getSelectedType();
matchActionItem = ((MatchRuleDetailForm) listcheckbox).getMatchAction();
int i = matchActionItem.indexOf(":");
matchActionItem = matchActionItem.substring(i+1);
thenExpression = routingAction+" "+matchActionItem;
} %>
<%=thenExpression%>
<% if (!SecurityContext.isSecurityEnabled() || (request.isUserInRole("administrator") || request.isUserInRole("configurator") || request.isUserInRole("deployer"))) { %>
[
]
<% } %>
<% }%>
<% } %>
|