how to pass a list of integers to birt parameter value?
3 answers
My problem was that I had a set of FACT_ID fetched in one data set, and then I had to fetch value of PREV_FACT_ID of each FACT_ID in set.
I was able to solve this by setting Data Set's query programatically in beforeOpen script.
In Clement's case (pass three integers - 1111,2222,3333 to the value of WS_FACTID) the queryText would be:
this.queryText = 'WS_FACTID IN (1111,2222,3333)';
Comments
Karol W
Oct 23 '12, 8:27 a.m.I have similar issue, I'd like to pass multiple values as parameter to FACT_ID column. Were you able to solve the problem?