Search code examples
ibm-mobilefirstdojodojox.mobileworklight-studio

dojox.mobile.SimpleDialog is not modal


I have the following structure of the Worklight application page:

<body>
    <div with heading/>
    <div with view/>
    <div with Tab bar/>
    <div with simple dialog/>
</body>

When I build the app for iPad and test it on it i have the following problem. Dialog window puts gray unclickable layer on everything except the tab bar.

Why the tab bar stays available?

Is it a bug or I'm doing wrong?


Solution

  • I tried put in views in a different variations, but it still didn't work.

    Than while debugging I found out that the grey cover, which should cover everything in background has a

    postion: absolute;
    

    than I override this css class with

    position: fixed;
    

    and everything became great:)