Hi to all,
I have a problem with refreshing the listview.
In the application I have 3 features let's say "feature A" "feature B" and "feature C".
I also created the 2 tables and 1 view from sqlite db(local).and their names are "table A", "table B", and "view C"
view C is like this:
create view C as
select a.oneColumn
From table A a
Union
select b.oneColumn
From table B b;
Every feature has the main amx.page and each of them has listview which values come from the sqlite db (local).
In feature A, I can add new row to database (update the row or delete it ) and the listview is refreshed with the help of the "ProviderChangeSupport".
Same thing happens in feature B. Everything is ok until now. But in feature C, it has also listview. When I do delete operation or update operation in feature A or feature B,
the listview in feature C is not refreshed.
I hope, you all can understand easily the problem and help me for the solution.@