Tabbedpanel no struts 2

Boa tarde amigos,

Nesta semana iniciei meus estudos sobre o framework struts2, já estudei todas as tags do struts, já testei várias…
A minha dúvida é a seguinte: COMO COLOCAR um tabbedpanel numa página especifica?

Estou usando o eclipse
já importe as tags do struts

<%@ taglib uri="/struts-tags" prefix="s" %>

Mas quando tento colocar a tag <s:tabbedPanel> sempre gera um erro dizendo que essa tag não existe!

:oops: :oops: :oops:

Olá…
Verifique se nao há nenhum erro no jsp quando voce declara

<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>

a declaração dos objetos que podem ser criados com o auxilio da taglib sao [google]Case Sensitive[/google] e um exemplo funcionando segue abaixo… copie e veja o q esta acontecendo.


<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>

<%@ 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">
<!--<script type="text/javascript" src="javascript.js"></script>-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
  <sx:head/>

<body>

	<sx:tabbedpanel  id="tabFicha" selectedTab="ficha">	
		
                <sx:div id="ficha" label="Ficha">
			<s:url action="actionMapeada.action" id="fichaUrl" />
			<sx:div id="fichaDiv" href="%{fichaUrl}"></sx:div>
		</sx:div>

		<sx:div id="historico" label="Histórico" >
			Informações de todos operacoes realizadas
		</sx:div>

	</sx:tabbedpanel>
</body>