In BIRT report, how to throw error when mandatory fields are not filled
![]()
Hi,
I have 6 mandatory fields as input for a BIRT Report. If I do not select any value for any of these fields and try to run the report, it shows Loading.... How to throw an error if any of these fields are not filled. |
Comments
I have to validate 2 date fields and 4 List boxes (cascading parameters).
When I click on each of the parameter and wrote below code in validate of script tab, it did not work
if(params["Start Date"].value == null){
false;
}
else {
true;
}