Hello ,
I created new chek box parameter in the contract class . Here i want use this parameter in controller class to specify which report w'll be launched.
I want writ this code in main method of controller class :
noYesId = contract.parmMethodName(); if(noYesId) { controller.parmReportName(#reportName1); } else { controller.parmReportName(#reportName2); }
how can i get the value of parmMethodName() ? In RDP class we use this :
XXXContract contract = this.parmDataContract() as xxxlContract; //then noYesId = contract.parmMethodName();
*This post is locked for comments