6
On list pages there is an Assist Edit button for each line. Users expect this to be a context sensitive menu, but it just shows Edit, Delete, Select More etc..

It would be great if we could promote Actions into this menu to meet User expectations.

STATUS DETAILS
Needs Votes
Ideas Administrator

Thank you for your feedback. Currently this is not in our roadmap; however, we are tracking it and if we get more feedback and votes, we may consider it in the future. Sincerely, Business Central Team

Comments

N

Oops! I found the property that does this. You need to set Promoted and then set Scope = Repeater.

actions
{
area(Processing)
{
action(Test)
{
ApplicationArea = All;
Scope = "Repeater";
Image = TestFile;
Promoted = True;

trigger OnAction()
begin
Message('OMG!');
end;
}
}
}

Category: Financial Management