Hi Team,
How to add new button to following red highlighted area?

Thanks
Hi Team,
How to add new button to following red highlighted area?

Thanks
Best answer by praveenpo
Hi
Below is a sample example to add a button in a graph.
public class TestGraph : PXGraph<TestGraph>
{
public PXAction<DACName> TestConnection;
[PXButton]
[PXUIField(DisplayName = “TestConnection”, MapEnableRights = PXCacheRights.Select, MapViewRights = PXCacheRights.Select, Enabled = false)]
protected virtual IEnumerable testConnection(PXAdapter adapter)
{
// logic here
return adapter.Get();
}
}
Hope this helps!!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.