Popup going behind in detach mode for table
Scenario:
Suppose you have a table with employee data in ADF screen. This table is surrounded with panel collection. On panel collection you have some button/link to open a popup. Now when you click on detach and try to open popup the popup will open and go behind the detach popup. When you close the detach popup then you can see the popup is opened. This scenario I have shown below:
Now when you click on Detach first and then click on "Open Popup" button the popup will open for very short time and it will disappear.
Solution:
In table property we have a property called "ContentDelivery" which is by default "When Available".
Change this property to "Immediate".
After changing the property run the page and click on Detach icon. It will open a popup window on full screen. The detach is nothing but full screen view of any table.
Now click on the "Open Popup" button. You can see that now popup is coming on top of detach window as shown below.
By putting partial submit equal to true for command button can also resolve this issue.
Suppose you have a table with employee data in ADF screen. This table is surrounded with panel collection. On panel collection you have some button/link to open a popup. Now when you click on detach and try to open popup the popup will open and go behind the detach popup. When you close the detach popup then you can see the popup is opened. This scenario I have shown below:
Now when you click on Detach first and then click on "Open Popup" button the popup will open for very short time and it will disappear.
Solution:
In table property we have a property called "ContentDelivery" which is by default "When Available".
Change this property to "Immediate".
After changing the property run the page and click on Detach icon. It will open a popup window on full screen. The detach is nothing but full screen view of any table.
Now click on the "Open Popup" button. You can see that now popup is coming on top of detach window as shown below.
By putting partial submit equal to true for command button can also resolve this issue.
Comments
Post a Comment