Componente Dialog Framework - Basic - PrimeFaces não abre

Bom dia pessoal,

Estou tentando usar o Dialog Framework - Basic do primefaces mas sem muito sucesso.

O código esta idêntico ao do Site mas esta dando erro de navegação.

Alguém já utilizou este componente.

Versão do Prime: 3.5
Versão da javax.faces 2.1.21

Pagina do componente que estou utilizando: http://www.primefaces.org/showcase/ui/dialogFrameworkBasic.jsf

Meu Código:

Tela chama dialog. Contém somente um botão para chamar a pagina em forma de dialog.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.org/ui">
    <h:head>
        <title>TODO supply a title</title>
    </h:head>
    <h:body>
        <h:form>  

            <p:commandButton value="View" action="#{dialogBean.view}" />  

            <!-- Ja teste com os componentes do jsf -->
            <!-- <p:commandButton value="View" action="#{dialogBean.view}" />  -->            

        </h:form>  
    </h:body>
</html>

Pagina que irá aparecer em forma de dialog.

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.org/ui">
    <h:head>
        
    </h:head>
        <h:body>  
            <p:dataTable var="car" value="#{tableBean.carsSmall}">  
                <p:column headerText="Model">  
                    <h:outputText value="#{car.model}" />  
                </p:column>  

                <p:column headerText="Year">  
                    <h:outputText value="#{car.year}" />  
                </p:column>  

                <p:column headerText="Manufacturer">  
                    <h:outputText value="#{car.manufacturer}" />  
                </p:column>  

                <p:column headerText="Color">  
                    <h:outputText value="#{car.color}" />  
                </p:column>  
            </p:dataTable>  
        </h:body> 
</html>

Bean:

@ManagedBean(name="dialogBean")
@RequestScoped
public class Dialog {
    
     public String view() {  
        return "dialog:view";  
    }  
}

Grato pela ajuda…

Aparentemente é um componente novo… não achei a partir de qual versão está disponível essa funcionalidade :frowning: