Динамическая привязка к компоненту динамической таблицы
Согласно этому сайту, источник данных должен быть передан в конструктор для создания провайдера данных. Затем таблица создается динамически и связывается с поставщиком данных.
Однако, если мое веб-приложение служит в качестве графического интерфейса для пользователей, где пользователь может создать таблицу с другой страницы и просмотреть ее на другой. Как я могу отобразить / связать вновь созданную таблицу, так как в ней не будет поставщика данных?
Мне удалось немного поработать над этим. Однако я не понимаю, почему в моей rowGroup нет значения / данных?
ModificationPage.java
public class ModificationPage extends AbstractPageBean {
@Override
public void prerender() {
try {
tempRowSet.setDataSourceName("java:comp/env/jdbc/testDB_MySQL");
tempRowSet.setCommand("SELECT * FROM " + this.tempTable.toString());
tempRowSet.setTableName(this.tempTable.toString());
tempDataProvider.setCachedRowSet(tempRowSet);
} catch (SQLException ex) {
Logger.getLogger(ModificationPage.class.getName()).log(Level.SEVERE, null, ex);
}
}
public void tableID_processValueChange(ValueChangeEvent vce) {
// Reset the gridpanel so that only the selected table is displayed
if (gridPanel2.getChildCount() > 1) {
gridPanel2.getChildren().clear();
}
this.tempTable.append(vce.getNewValue());
Table dynamicTable = new Table();
dynamicTable.setId(tempTable.toString());
dynamicTable.setTitle(tempTable.toString());
dynamicTable.setPaginateButton(true);
dynamicTable.setPaginationControls(true);
// Create the Table Row group dynamically
TableRowGroup rowGroup = new TableRowGroup();
rowGroup.setId("rowGroup1");
rowGroup.setSourceVar("currentRow");
rowGroup.setValueBinding("sourceData", getApplication().
createValueBinding("#{ModificationPage.tempDataProvider}"));
rowGroup.setRows(5);
// Add the table row group to the table as a child
dynamicTable.getChildren().add(rowGroup);
int test1 = rowGroup.getChildCount(); // returns 0, why?
int test2 = rowGroup.getRowCount(); // returns 0, why?
int test3 = rowGroup.getColumnCount(); // returns 0, why?
for (int i = 0; i < rowGroup.getRowCount(); i++) {
// Create the table column
TableColumn tableColumn = new TableColumn();
tableColumn.setId(tempRowSet.getColumnNames()[i]);
tableColumn.setHeaderText(tempRowSet.getColumnNames()[i]);
// Add the table Column to the table row group
rowGroup.getChildren().add(tableColumn);
// Create the Static text and set its value
StaticText staticText = new StaticText();
staticText.setValueBinding("text", getApplication().
createValueBinding("#{currentRow.value['borrowerID']}"));
// Add the static text to the table column1
tableColumn.getChildren().add(staticText);
}
gridPanel2.getChildren().add(0, dynamicTable);
}
}
Спасибо.