1
votes

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.

3
What is name of the tab? Describe how you try to add it ? - Yuriy Zaletskyy
"Activities" is the name of new tab which I am trying to add. I have directly modified the CR306000.aspx form and I was able to see the tab being added. Now I want to add the grid. - Krunal

3 Answers

0
votes

This is because Acumatica team itself created tab "Activities". By default tab "Activities" is hidden. The same happens with your tab.

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)
0
votes

Create separate PXGraph class Added view to my DAC Added second datasource to CR306000 screen and bind it to grid