dunno.
but you could remove the default item operation and instead add the following to the parent Instance Block Tag itself:
onclick="AwareApp.startProcess2('ProcessName', 'ObjectName', InstanceID, 'RenderOption')"
..InstanceID would be {ID}
might also need href=”#” at the beginning of the Tag, but not always in Aware.
Tag itself might also need to be changed from a div to an a, but not always in Aware.
Try just adding the above first. Thus the opening Instance Block Tag would look something like:
<div class="ClassName" onclick="AwareApp.startProcess2('ProcessName', 'ObjectName', {ID}, 'RenderOption')">
if that doesn't work, then you would add the href="#" before the class
Per user Guide:
..starts the process with the specified name and writes the specified object instance into context, and displays any output of the process according to the render option.
RenderOption can either be:
main - any output will be displayed in the main page replacing the current contents (use if there isn't going to be any output)
new_tab - any output will be displayed in a new closeable tab
AwareApp.getPanelId('FrameName', 'TabName', 'PanelName') <- obviously don't enclose function in ' '
I think FrameName has to be lower case.