I have create an action with PXAction on my Graph extension, I am trying to add this action on the grid header, after converting code to Modern UI, it is not showing on grid Header, although I have verified this action is added in view class in ts file like…
--------------------ts file------------------
export class EWPM3030 extends PXScreen {
BatchFormulaMaterials = createCollection(BatchMatl);
}
export class BatchMatl extends PXView {
AddPackagingMatl: PXActionState;
}
---------------html---------------
<qp-grid id="FormulaMaterials_gridMatl" statusField="Availability" view.bind="BatchFormulaMaterials"></qp-grid>
please let me know if anything is more required
