Hello
I am using Jdeveloper 11.1.1.3.0 ADF BC.
I have this problem:
in my page I have some LOV that conrol the rendering true/false for other components,
and we achieved this by a valuechangeLisntener method in a backing bean. and
everything works well. However when we use the rollback the rendering does not work as expected.
to clarify the problem, suppose we have LOV1(has two values 1,2) that control the rendering of
LOV2, when the user selects 1 LOV2 will be rendered and when the user selects 2 LOV2 will be hidden
now suppose that the default value of LOV1 is 2, so LOV2 is hidden, now the user change the value
of LOV1 to 1 so the LOV2 will be rendered, now the user press rollBack the value of LOV1 will
reset to 2 but the LOV2 is still rendered on the page. which is not true.
initially I thought that I need to call the valueChangeListener method again after rollback,
I found something like this in this thread:
3429568
but this is for Jdeveloper 10g and that method is deprecated in 11g, as someone comments, and
he mentioned that this is not the best practice. is there any working solution for this problem?
can anyone help please