Hi @mhaps
Have you created graph like below ?
Public class GraphName : PXGraph<GraphName,Primary DAC>
If you create a graph like this then you will get the trash bin delete option and when you click on it the it will delete all the records.
Can you please create a graph like shown below and change the skin Id to details instead of primary.
Public class GraphName : PXGraph<GraphName>
With this syntax, we will get the Cross delete button on top of the grid and on click, it will delete only the current record instead of all records from the grid.
Hope this helps!!
The graph is already created without primary DAC.
It also has a form and master-detail relationship bound to Current. That does not work anymore if SkinID is set to Details for the master.
I solved it by replacing PXDelete<> with a custom action.