Currently running smartgwtee 3.0 on RHEL 5.X and Firefox 10. I have a listgrid and several fields on the listgrid. One of the fields is called "Value" and is of type float. I want to create a value map for it that has the blank option to show all values, which it does by default, and a "Outlier Only" value. For the outlier only value I would like to display that string and if it is chosen I would like to add the following to the where clause:
So if nothing is chose, all values are displayed and if the "Outlier Only" select item is selected then I want to get the outliers. How can I go about doing this?
Code:
where value > maximum or value < minimum
Comment