Modal WindowPane with Dimmer ....

Hi,

is there a component for echo3 like the ModalDimmer for echo2?

Can i use the components from the EPNG ? They are for echo2 but is there an easy wo to migrate them? For Example the LigthBox or the AutoCompleteTextField?

Can someboyd post a code snipplet that shows how to use the TransitionPane?

Prognose

tliebeck's picture

For EPNG stuff for Echo3,

For EPNG stuff for Echo3, you'll want EPNG3: https://echopoint.dev.java.net/

TransitionPanes are fairly straightforward to use. Just set a transition type (default is no transition). The component can only contain one child at a time. When you want to change the content just do.

transitionPane.removeAll();
transitionPane.add(new WhateverComponent());

This will cause the TransitionPane to change from the old content to the new content.

Thank You,

Thank You,

but the echopoint API does not include something like a modal dimmer. But in echo3 when an error occures there is a red X on the screen and the rest of the screen is "dimmed". Can i use this dimmer effect somehow?

Ok i can put everything in the TransitionPane, but I can not put the Transition Pane in every other Component. I can only add it in a Pane Component, but I want to have a transition when the main Content of my page changes, that means the footer and header stays and just the vontent in the middle changes.

Prognose