I have a data table that is filtered based on data entered in a Search text box. If no data is entered in the text box all the data from the data source is shown. When data is entered the data table is filtered based on that data. The data table Items property is set to Search(datasource, TextBox.Text, col1, col2, col3).
Users can delete rows from this data table. When they do I want to clear out the Text box and refresh the data table. Since the text box is cleared, all the data from the data source should appear in the data table. I do a Reset to clear the TextBox. When I do the reset, it clears out the data table and doesn't show any data. After the reset I want the data table to show all the rows in the data source like it does when the Text box is empty when the data table is first display.
Any ideas on how to do this?