Jeanne Boyarsky wrote:As the AJAX example shows, you are appending data each time. If you want to remove data, I think you'd need to re-initialize the table each time. This example shows how to initialize it up front. You'd need to change the code to do it each time.
Hi Jeanne,
The example shows those are static tables.
In my case, i get a respose in XML, iterating through out all element in xml and adding each rows in a table. Also before adding any rows, i m deleting all rows in table and start adding new rows.
I don't have any problem in adding and deleting rows in table.
Once data is available in table, when I try to sort table appending with previous results also.
For example, first time i try to sort 10 rows, 2nd time I got a new 3 result and try to sort, table appending with 13 (old + new records). Is there any cache tablesorting storing this information ? Do I need to clear the cache before appending new data ?
Thanks.