jasper reports - JasperReport Server - Interactively Filtering with own Java Data-Type doesn't work -


i have created own java class (type) have life little easier when displaying money (euro)-values in jasper reports.

    public class euro extends number implements comparable<euro> {      @override     public string tostring() {...}      @override     public boolean equals(object obj) {...}     @override    public int hashcode() {...}  } 

the data displayed in table , works fine. sorting whole column works great. but, if want filter column "is greater than" - no data displayed after filtering.

when changed type of data bigdecimal sorting works.

what i'm doing wrong? or can tell me exaclty jasper when tries filter data?


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -