
As shown by the image itself , i am running a report which having a first parameter as office (multivalued , list box coming from db) we also want a custom parameter such as All Offices , when the user select all offices ..all six offices should get selected ...to achieve this , we used following script on before factory event
if( params["off"].value[0] == 'All Offices' ){
importPackage(Packages.org.eclipse.birt.report.model.api);
importPackage(Packages.org.eclipse.birt.report.model.api.elements);
dshandle = reportContext.getReportRunnable().designHandle.getDesignHandle().findDataSet("dataSet1");
filters = dshandle.filtersIterator();
while( filters.hasNext() ){
filterHandle = filters.next();
if( filterHandle.getExpr().indexOf("off_Name") >= 0 ){
dshandle.removeFilter( filterHandle.getStructure() );
}
}
}
and it was working on BIRT 2.3 , however now we are switching to BIRT 3.7 and you can see that its not seems to be working. any suggestion??
Is there any other way to achieve the same ???
EDIT : ok .. i set a default parameter such as All Offices in default value tab under dynamic selection list (BIRT 3.7)and set it as constant ...however when i run the report my custom All Offices doesn't shows up ?? any idea ???