Yes, 9.6 was the first release that contained the CAF Tag Library Reference documentation.
The provided CAF functions don’t currently have a method for date values.
I haven’t tried this, but you should be able to create your own custom function in your page bean that does your conversion logic. This ability to invoke methods with parameters is provided by the EL 2.2 standard.
For example, add a new method to the your page bean:
public long dateToLong(String value) {
long ms = 0;
//TODO: convert the date string to a number here..
return ms;
}
And then you can change the sort expression to call your custom function:
#{activePageBean.dateToLong(row.field1)}
#webMethods-BPMS#MWS-CAF-Task-Engine#webMethods