Page 1 of 1

Acumatica Kundenbildschirm Benutzerdefinierte Schaltfläche Klicken Sie auf Problem

Posted: 28 Feb 2025, 10:11
by Anonymous
In Acumatica Customization Project, im Customer -Bearbeitungsbildschirm (AR303000) Ich habe ein neues Registerkarten -Element
als Sanktionen hinzugefügt. In diesem Registerkartenelement habe ich ein Raster und eine Schaltfläche eingestell

Code: Select all



















< /code>
Ich habe das Ereignis in CustomerMaint -Erweiterung wie gezeigt hinzugefügt. Aber das Click -Ereignis funktioniert nicht. Warum? < /P>
public class CustomerMaintExt : PXGraphExtension
{

public PXAction SanctionsResult;
[PXButton]
[PXUIField(DisplayName = "Sanctions Result")]
protected virtual IEnumerable sanctionsResult(PXAdapter adapter)
{

ExecuteSanctionsCheck();

return adapter.Get();

}
}