Hi
The mentioned “Refresh” makes a call to the IS service to retrieve whatever results the service delivers.
If instead of refreshing the table contents you want to “go back” to displaying the first row, you could use the following javascript (supposing ‘asyncTable’ is your table’s id):
CAF.model('#{caf:cid('asyncTable')}').go(0,-1,null);
If you were using v7.x instead of v8, you would need a different method to get the table’s client side id. It would look like:
CAF.model('#{activePageBean.clientIds['asyncTable']}').go(0,-1,null);
Hope this helps,
Javier
#webMethods-BPMS#MWS-CAF-Task-Engine#webMethods