It seems the min/max validation for process parameters is not implemented at all.
Maybe we can consider hiding those fields until implemented.
The minimum implementation must cover the same as AD_Column (DisplayLogic and numbers)
Also it would be interesting to add support for dates (see )
hi
i used the comparation based on validation on column that already implemented min max validation.
compare string is used for reference except date or number. if the reference is not date or numeric, it will compare as string.
any reason for compare string?
ProcessParameterPanel.validate(Object value, String valueMin, String valueMax, boolean isMandatory, int fieldType)
fail for case:value = 4valueMin = 2valueMax = 30fieldType = 11
ReasonString compare of valueMax.compareTo(value.toString()) < 0mean "4" > "30"
- it is best for usability to report all errors
moment implement report at first error, does it better to validate for all parameter and report all fields error?
It seems the min/max validation for process parameters is not implemented at all.
Maybe we can consider hiding those fields until implemented.
The minimum implementation must cover the same as AD_Column (DisplayLogic and numbers)
Also it would be interesting to add support for dates (see )