I can not get process and process all to show up on this graph:
public class RecycleSeries : PXGraph<RecycleSeries>
{
[PXProcessButton]
public PXProcessing<Series> SeriesRecords;
public PXSelect<
SeriesDetail,
Where<SeriesDetail.seriesID, Equal<Current<Series.bookSeriesID>>>>
SeriesDetailRecords;
public RecycleSeries()
{
SeriesRecords.SetSelected<Series.selected>();
SeriesRecords.SetProcessDelegate(Process);
SeriesRecords.SetProcessAllVisible(true);
SeriesRecords.SetProcessVisible(true);
}Removed Process handler for clarity.
Could the aspx be messed up?
I have this for the aspx:
<CallbackCommands>
<px:PXDSCallbackCommand Visible="True" Name="Process" ></px:PXDSCallbackCommand>
<px:PXDSCallbackCommand Visible="True" Name="ProcessAll" ></px:PXDSCallbackCommand></CallbackCommands>Not sure if it’s needed.
Could it just be an issue with the toolbar?”
It doesn’t look like any actions are showing up.