Hello,
I am trying to implement a quickjump function to access a dm_folder decendent directly in the treeview in webtop from a jsp using a dmf button that the user clicks after inserting the value of a specific attribute.
[ "123" ] [OK]
Here is what I tried:
A button in a jsp function that uses onclick to call a function in the java component page that calculates the r_object_id from the custom attribute and generates and calls a drl such as:
http://localhost:8081/webtop/drl/objectId/0c0228d08000417f
Is this the correct way to do it? or is there another way?
The following doesn't seem to work and gives me a - invokeMethod() failed trying to call: onQuickJump( com.documentum.web.form.control.Button, com.documentum.web.common.ArgumentList )
jsp
<dmf:text name="quickJumpTxt" id="quickJumpTxt" size="15" defaultonenter="true" tooltipnlsid='MSG_GO' />
<dmf:button name="go_button" src='icons/search/search-go.gif' onclick="onQuickJump" default="true" tooltipnlsid='MSG_GO_TIP' />
component
private void onQuickJump(Control control, ArgumentList args) {
...
}