Thank you, Michael for your response.
I've changed my back bean in this way:
public class AdministradorUsuariosBean {
DataModel listaUsuarios = new ListDataModel();
AdministradorUsuariosBean() {
}
public DataModel getListaUsuarios() {
listaUsuarios.setWrappedData(cargarListaUsuarios());
return listaUsuarios;
}
public void setListaUsuarios( DataModel listaUsuarios ) {
this.listaUsuarios = listaUsuarios;
}
But the problem persists. I'm really new in java and jsf framework, so
any basic suggestion may be important.
Thanks agais, Mariano
> Hello,
>
[quoted text clipped - 97 lines]
> > What I'm doing wrong?
> > Thanks in advance!!!
mbunirigo@gmail.com - 10 May 2007 15:15 GMT
Hello again, I found the problem in the class constructor
I forgot the public claus in the definition
I change
AdministradorUsuariosBean() { }
<<
public AdministradorUsuariosBean() { }
and everything works fine.
Thank you, Michael again.
Best regards, Mariano
On 10 mayo, 10:45, mbunir...@gmail.com wrote:
> Thank you, Michael for your response.
> I've changed my back bean in this way:
[quoted text clipped - 120 lines]
> > > What I'm doing wrong?
> > > Thanks in advance!!!
Michael Plate - 10 May 2007 16:59 GMT
excellent :-)
best regards
Michael
> Hello again, I found the problem in the class constructor
> I forgot the public claus in the definition
[quoted text clipped - 135 lines]
>> > > What I'm doing wrong?
>> > > Thanks in advance!!!