Exemplo Primefaces 3.3.1. TabView Effects

Atendendo ao pedido do colega Agmar, segue o exemplo de um ManagedBean para o componente Primefaces TabView:

Aswering the request of the fellow Agmar, follows the ManagedBean example for Primefaces component TabView:

 

// .java

[cc lang=”java”]
public class TabViewControl implements Serializable{

private String effect;
public String getEffect() { return effect; }
public void setEffect(String effect) { this.effect = effect; }

public TabViewControl() { if(effect==null) effect = “fold”; }
}
[/cc]

 

// .xhtml

[cc lang=”html4strict”]













[/cc]

 

Veja funcionando aqui

See running here

 

Um grande abraço, e Sucesso!