single left click custom action on xform

Options
gheorgheplus
edited March 5, 2012 in Documentum #1

Hi,

I have the default taskspace folder tab.

I need to change the behaviour on the singol left mouse click on the document for the preview.

So I have extended the FolderContentView.xml and the relative class ( extends FolderContentViewComponent ),but I have not found the event ( method ) for the singol click.

The method onClickButton is for the double click.

How can I intercept and change the preview behaviour?

thanks

Best Answer

  • PramodModak-mT1PU
    edited March 3, 2012 #2 Answer ✓
    Options

    Hi,

    In same component you have to modify the JSP page. In JSP page you will see datagrid and for that datagrid there is RowEvent handler "onSelectObject" which executes at client side.

    Modify this behavour as per your requirement.

Answers

  • PramodModak-mT1PU
    edited March 3, 2012 #3 Answer ✓
    Options

    Hi,

    In same component you have to modify the JSP page. In JSP page you will see datagrid and for that datagrid there is RowEvent handler "onSelectObject" which executes at client side.

    Modify this behavour as per your requirement.

  • gheorgheplus
    edited March 5, 2012 #4
    Options

    thanks a lot