次の構造でデータベースからオブジェクトを運ぶ動的dataTableを構築する必要があります。
次の構造でデータベースからオブジェクトを運ぶ動的dataTableを構築する必要があります。
物体:
- 名前=アナ
- Cpf = 12364547
このデータを2つの列に表示する必要があります。次に例を示します。
列1
- 名前
- cpf
2列目
- アナ
- 12364547
私は次のコードを持っています:
public void criarTabelaDinamica(Object obj){
fc = FacesContext.getCurrentInstance();
this.tableMensagem = (HtmlDataTable) fc.getApplication().createComponent(HtmlDataTable.COMPONENT_TYPE);
HtmlColumn column1 = new HtmlColumn();
tableMensagem.getChildren().add(column1);
HtmlColumn column2 = new HtmlColumn();
tableMensagem.getChildren().add(column2);
tableMensagem.setValue(obj); //how to put the items in the two columns of the object? Here is my question!!!
}
注:オブジェクトは、私の例では2であるアイテムの量によって異なります。たとえば、5つある場合があります。
ありがとう!!!