I am trying to add a new tab to Case Screen next to Relations tab with a grid of the newly created user table. I have create a new DAC class and also modified CR306000.aspx form. However, tab appears but not the grid. Can anyone please suggest.
1
votes
3 Answers
0
votes
0
votes
remember that:
- Each asp.net page must contain a single PXDateSource control.
- The TypeName property of the PXDataSource is always the graph for the page. In this case CRCaseMaint
- No need for you to change or add any new data source to your page.
- Since you will be extending the CRCaseMain graph, inside your extension you can simply declare Activities2 data view with standard public PXSelect< YOURDAC > Activities2;
- In your aspx page, you can then access your dataview view through the original source with datamember set to your new view (Activities2)