We are in the process of migrating v7 processes to v9. In some of our forms we have many form segments that are layered. Visibiliy of fields on those segments depends on some checkboxes. When I click something on form one form segment is shown (it's controls) and the other one is hidden. When I click something else I toggle form segments visibility. It works perfectly in version 7.
But in version 9 it doesn't That's because of z-index order I think.
Example:
Layer A (z-index: 1300 - checked it in firebug, metastorm designer generated it)
- textbox (z-index 1301)
Layer B - (z-index 1400)
- checkbox (z-index 1401)
So if you look at z-index of Layer B you can see that it 'covers' Layer A with it's contents. When I show Layer A and hide Layer B I still cannot click elements on Layer A.
Did anyone solve it? Or what is the preferred way to achieve for segments layering in V9?