Tomas Bilek

Greenhorn
+ Follow
since Nov 17, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Tomas Bilek

<s:textfield value="%{#attr.currentObject.protocolParamName}" nam="currentObject[%{#attr.stat.index}].protocolParamName" cssClass="TextBox177"/>
12 years ago
Edit your index.jsp
index.jsp :


<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<head><title>DYNAMIC DROPDOWN MENU</title></head>
<body><br><br><center>

<s:url id="someUrl" action="fetch"/>
<a href="%{someUrl}">Home Page</a>


</center>
</body>
</html>

Tomas Bilek (J)
12 years ago
You must use attribute "target".

<s:a href="" target="_blank"/>

_blank Open in a new window or tab
_self Open in the same frame as it was clicked
_parent Open in the parent frameset
_top Open in the full body of the window
framename Open in a named frame
12 years ago
You must fill attribute "parent". So for example parent="Person".

Good Luck !
12 years ago