removeRow() just removes the row & returns true if successes & model will delete this row items from memory (model will take ownership & deletes the items).
takeRow() will remove all the items in row from model & returns that list of items. these list of items will not get deleted from memory (model releases the ownership with the items).
Ok thanks, so removeRow will be appropriate in my case.
Bookmarks