Expand my Community achievements bar.

SOLVED

Clear and refresh Adaptive table with fresh data

Avatar

Level 2

Hi All,

I'm using Adaptive table to display open tickets and also provided 2 buttons "Open" and "Resolved" to show respective tickets.

Now on load of the panel, by default showing the open tickets and when user clicks on "Resolved" button i need to fetch the records from RESTFul service and display the records in the same table.

Now the issue is I'm not able to remove the records from the previous request. Basically i need to reset the table after making new RESTFul service and dynamically load the data. Bit apprehensive why this should be so difficult in Adaptive Forms. I tried below 2 approaches but didn't work.

1. table1585577511230.resetData();

This only cleared the rows and continue to see the dummy records. When i switch back between "Open" and "Resolved" button the rows are getting appended with blank data.


2.
while (table1585577511230._Row1.count > 1)
{
table1585577511230._Row1.removeInstance(0);
}


This is not clearing/removing the blank records.

 

I could consider using 2 different tables, one for Open tickets and other is for Resolved tickets, but when User updates the Status of one of the Open ticket to  "Closed" again i need to refresh the data in Resolved table and i may see similar issue with blank records.

 

@Mayank_Gandhi

@workflowuser 

 

 

Thanks & Regards

Suresh

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

@sureshp23286254  You might have to traverse all the added instance and clear them. 

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

@sureshp23286254  You might have to traverse all the added instance and clear them.