Currently the Task List default open tab is “People”. Is there a way to change this to the “General” tab? TaslList_ChangeDefaultToGeneralTab.pdf (54.3 KB)
See uploaded PDF file for more details.
You could try adding this to the form load event:
Erp.UI.App.TaskListEntry.Panels.TaskSubPanels.TaskGeneralPanel GeneralPanel = (Erp.UI.App.TaskListEntry.Panels.TaskSubPanels.TaskGeneralPanel)csm.GetNativeControlReference(“cfc556c3-d88b-45f9-91bd-420ae1860890”);
GeneralPanel.Focus();
change “cfc556c3-d88b-45f9-91bd-420ae1860890” to the control reference as appropriate.
Very impressive. Thank you the code you provided works flawlessly. Is there a resource I can reference to learn about similar related topics.
Best regards,
Thank you so much for the code example. It works flawlessly. Best regards.
I’m looking for ideas… I am trying to use the existing Task List but they don’t want it to be filtered to a specific user. They just want it to be wide open for any user with the ability to apply filters similar to a dashboard. Then when you click on the row in the list, the details will show up on the detail tab.
Can this be done?
Don’t assign the user to any workforce. The Tasklist is filtered by workforce.
Include the workforce on the list… You can then filter the list by any workforce.
That’s a good point. However, when you select all, it still only lets you view each workforce one at a time. I tried to make a dashboard list view that publishes/subscribes to the UI but I don’t think I am selecting the correct columns. Any ideas which ones I need to use? Or where to look to identify which ones I need to be using? I looked in my trace but it just appears to use SalesRepCode and I attempted to do that… with no luck so far.