First count the number of rows in FlexTable using getRowCount()
method. Remove specific row from flex table using
removeRow( int row).
Ex:
int count = myFlexTable.getRowCount();
for (int i = 0; i < count; i++)
{
myFlexTable.removeRow(i);
}
S. Abraham
www.DataStoreGwt.com
Persist objects directly in App Engine
On Oct 11, 3:01 pm, vikky <[email protected]> wrote:
> Hi ,
>
> I am using a Flex Table in which i want to "Add" and "Remove" the
> row, Add functionality working properly but in case of Remove, when i
> tried to remove more then one row from the table it thrown an
> exception "IndexOutOfBound"
>
> Please do the needful.
> Regards,
> Vikas verma
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.