Hi,
My application has a root TabGroup as the base. I am poping open heavyweight windows over the tabgroup to display information as required. Sometimes I have the need to display things modally from the pop-up window. Eg:
Case:
Tabgroup opens window A and then window A displays an activity Indicator during computations and then pops a AlertDialog.
Problem:
Since window A is a heavyweight window ( I had to make it heavy weight in order for them to be displayed over the tabgroup), any other modal windows drops below the window stack. i.e. activityIndicator.show() pops the indicator over the tabGroup and under the current window (Window A).
Window A is made a heavyweight window by setting :
fullscreen : false, exitOnClose : falseIs there a way to ensure that modal window items such as AlertDialogues and ActivityIndicators are always displayed above everything else?
Your Answer
Think you can help? Login to answer this question!