I am displaying a page by below script
app.showDialog(app.pages.test);
on the test page, which has an update button to invoke a popup (Update confirmation with Yes and No button), Problem is when the update button is clicked confirmation popup shows behind the dialog box. I tried with below css
.runtimeRoot .app-PopupOverlay {
z-index: 20;
}
Using the above css, popup comes on top, but not clickable. Is there a way fix this?