Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interactive grid row action menu - remove duplicate rows option

Tyagi TusharAug 10 2017 — edited Aug 10 2017

In my Interactive grid, i want to remove "Duplicate Row" option but keep the option to add row.

i can add custom options to row action with

apex.region("manhours").widget()

    .interactiveGrid("getViews").grid

    .rowActionMenu$.menu("option")

    .items.push({type:"action", label:"Callfunction", action: function(){myfunction()}});

i can also access "Duplicate rows" using function

apex.region("manhours").widget()

    .interactiveGrid("getViews").grid

    .rowActionMenu$.menu( "find", "DUP" );

This returns hide property as true. But how to set this property to false.

Or is there any other direct way to achieve this.

This post has been answered by Marko Goricki on Aug 10 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 7 2017
Added on Aug 10 2017
2 comments
3,319 views