Boa noite pessoal. Estou usando Struts 2 e não consigo colocar o autocompleter no lugar certo. Desse jeito que ele está ai embaixo, ele aparece sempre antes dos 2 textfields.O que estou fazendo de errado?
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<s:head theme="ajax"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<s:form theme="ajax">
<s:textfield label="User" name="user"/>
<s:textfield label="Password" name="password"/>
<s:autocompleter list="{'teste1','teste2','teste3'}"
theme="simple"
autoComplete="false"
searchType="substring"
size="200px"/>
</s:form>
</body>
</html>
Vallew.
Dadonas