Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

how to refresh the listview which is in another feature

nicknameMar 20 2015 — edited Feb 18 2018

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.@

This post has been answered by Frank Nimphius-Oracle on Mar 24 2015
Jump to Answer

Comments

Post Details

Added on Mar 20 2015
3 comments
1,003 views