フレックステーブルでは、実行時に3つのウィジェットが連続して追加されます。
最初の2つのウィジェットはListBoxであり、3番目のウィジェットはlistBoxまたはtextBoxにすることができます。
3番目のウィジェットについて知りたいのはlistBoxまたはtextBox??
最初の2つのウィジェットについて知るための私のコード
int count=flexTable.getRowCount();
for(int i =0;i<count;i++){
ListBox lbPropreties = (ListBox) flexTable.getWidget(i, 0);
String propertyname =lbPropreties.getValue(lbPropreties.getSelectedIndex());
ListBox lbCondition = (ListBox) flexTable.getWidget(i, 1);
String condition =lbCondition.getValue(lbCondition.getSelectedIndex());
}
ありがとうございました