Skip to content

How to mass hide/unhide BIRT controls #1568

Closed Answered by speckyspooky
raviprsd18 asked this question in Q&A
Discussion options

You must be logged in to vote

Yes, you can get the IDs instead of a static array based on the design handle.
Here a small example for the beforeFactory-method:

var body = reportContext.getDesignHandle().getBody();
var it = body.iterator();

glElemOverview = "";
while (it.hasNext()) {
       var obj = it.next();
       glElemOverview += "<br>" + obj.getName();
}

Replies: 3 comments 7 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
7 replies
@raviprsd18
Comment options

@hvbtup
Comment options

@hvbtup
Comment options

@speckyspooky
Comment options

Answer selected by raviprsd18
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants