I have created a Inquiry-Page which has a grid and i am using VirtualDAC to bind the Grid, I want to add custom action button to process one or more record, I added a custom Action button but Action button is not showing, I have used below code
public PXAction<QCOrderVirtualDAC> ActionMenu;
[PXButton(SpecialType = PXSpecialButtonType.Default)]
[PXUIField(DisplayName = "Action", MapEnableRights = PXCacheRights.Select)]
protected virtual IEnumerable actionMenu(PXAdapter adapter) {
return adapter.Get();
}
also call method in class constructor to add Action button,
this.ActionMenu.MenuAutoOpen = true;
this.ActionMenu.AddMenuAction(this.AssignTo);
But still button is not showing, How may i add custom Action button in InquiryPage?