The select option value are dynamically bind in jsp page but the if the first value is Views
all other option value are becoming Views like wise, if the value is Edit
then all become Edit
can't able to fix the problem, in this plevel
is the arrayList
it has either Edit
or Views
value, help me to find the solution....
<select id="change">
<% for (Object level : plevel) {
if (level.equals("Views")) { %>
<option><%=level%></option>
<option>Edit</option>
<%} else if (level.equals("Edit")) {%>
<option><%=level%></option>
<option>Views</option>
<% } %>
</select>
}
This is my output image