I know how to create Custom Fields in a DataSet for a Report in DecExpress XtraReports. But I need to Declare a Custom Function in available function list for Calculated Fields. I do not know how to solve this problem.

source type : Date
result : Date String In other Calendar Formats

source type : TinyInt (Enumeration)
result : Custom Enumeration Value Name
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

As per Q232469 and S132091 it isn't supported without using Scripts. However in saying that the Expression Editor does allow for Custom Functions as per Implementing Custom Functions I would look at this sample How to: Implement a Custom Criteria Language Operator and see if it does what you need.

Otherwise the suggestion is to add a Calculated Field then in your Script override the returned value of that Calculated Field see Calculated Fields

Hope this helps

link|improve this answer
Just adding onto that, the Implement a Custom Criteria Language Operator specifically show an example of creating a Function which returns a date in a different format, much like your first request. I have used Custom Functions in the past for XPO, but I must admit I haven't looked into ICustomFunctionOperatorFormattable and using it in the End User expression editor. I think it should work though based on what I am reading. – AussieALF Aug 18 '11 at 23:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.