Viritin BeanBinder with nested property

It`s possible to use nested property with viritin
BeanBinder
?
I have this class:

public class Ficha { private String id; private Parte parte = new Parte(); private String observacao; private Integer numero; } and this other class:

public class Parte {
  private String nome;
  private String last;
}

in my view I have fields names: numero, observacao, nome, last

so I try to use:
Ficha newFicha = new Ficha();
BeanBinder.bind(newFicha, this, “parte.nome”)

but the bind with my parte.nome don`t works, the numero and observacao works fine.

tks

Try to annotate then
nome
field in view with @PropertyId(“parte.nome”)

But my view are created with designer, So I can`t edit the file :frowning:

Maybe you can try binding manually the field as suggested
here
(also mentioned by John Ahlroos in this similar
post
)

BeanBinder.bind(newFicha, this, "parte.nome").bind(nome, "parte.nome")

HTH
Marco