Hi,
I've got a user defined functions which is included in a EncounterDatasource.dll below is the code
[Function(Category = "My Functions", Namespace ="My",Description= "Get array item")]public static string GetArrayItem(string[] values,int index){ return values[index];}My problem is upon deployment it cause error in the fields using the said functions. The error is
An error has occurred while processing TextBox 'textBox81': The expression contains object 'My' that is not defined in the current context.On the Telerik Report Designer its working fine since I've able to add the dll reference in the Telerik.ReportDesigner config but not on the application its not working. I've also made a reference to the dll from my project and make sure it reside with the report. What would be the possible cause of this and how would I deploy report using user defined functions from external dll?
Regards,
Jordan