Jiwa 7.2 Bugs
Hi Mike
I have just discovered a bug in 7.2 that wasn't there in 7.1 if you have a system setting plugin and have code in the Button click to show a search that uses
You need to change it to
Otherwise you get an error about the connection string not being initialised for PermissionDemand.
and further to this another issue is
versus below which does not and produces an error about Base directory can not be blank
Looks like there are some issues with JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.
I have just discovered a bug in 7.2 that wasn't there in 7.1 if you have a system setting plugin and have code in the Button click to show a search that uses
- Code: Select all
var search = JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.Search;
You need to change it to
- Code: Select all
var search = BusinessLogicHost.Manager.Search;
Otherwise you get an error about the connection string not being initialised for PermissionDemand.
and further to this another issue is
- Code: Select all
PrintUIObject = this.Manager.CreateReport(ReportDefinition,this, 1, true, false, true, "", false,1);
versus below which does not and produces an error about Base directory can not be blank
- Code: Select all
PrintUIObject = JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.CreateReport(ReportDefinition,this, 1, true, false, true, "", false,1);
Looks like there are some issues with JiwaFinancials.Jiwa.JiwaApplication.Manager.Instance.