Hi … I am currently trying to solve a thing I couldn’t find any satisfying solution for.

 

I have a repeater in which every row has a checkbox. At the bottom of the list I have a drop-down-list in which I can select one of the actions “delete selected”, “print selected” and “export selected to Excel”. Next to this I have an action button calling a Java class handling everything. So far so good.

 

My actual problem now is that if I select delete the deletion is executed and the form is simply redisplayed … everything works fine here. If I select one of the other options I have to display a popup containing the desired report. How would the prettiest way to do this look like?

 

I created my Java class that way that the methods used simply return the name of the pipeline, which should be displayed. If this is null … no popup should be created, if it is not null … a popup should appear … any ideas?

 

I would greatly appreciate your help.

 

            Chris