1
플렉스 테이블에서는 3 개의 위젯이 런타임에 한 행에 추가됩니다.GWT에서 flexTable의 getWidgets
첫 번째 위젯은 ListBox이고 세 번째 위젯은 listBox 또는 textBox가 될 수 있습니다.
세 번째 widjet에 대해 알고 싶습니다. 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());
}
감사합니다