Hi people, I'm new user of Test Advantage ver 2009.2 with RFT 8.1, I'm just wondering how can I open the 'ColumnChooser' from a Grid. Anyone knows that?
Thanks,
Rick
Rick,
To show Column chooser for the root Band:
UltraGrid1Table().Click(AtList(AtRow(0), AtLocation(
"RowSelectorHeader")))
For a Child Band:
UltraGrid1Table().Click(AtList(AtRow(0),AtRow(0), AtLocation("RowSelectorHeader")))
if there are no rows in the Grid then you can show the column chooser by:
UltraGrid1Table().Click(AtList(AtLocation(
"Band"), AtIndex(0), AtLocation("RowSelectorHeader")))