Author Topic: Create/add own button to existing view.  (Read 7829 times)

Offline hsujdik

  • Hero Member
  • *****
  • Posts: 541
  • Karma: 30
Re: Create/add own button to existing view.
« Reply #15 on: March 04, 2020, 03:42:19 PM »
Include this parameter in your ViewActivator:
[code]
CreateNewRegionManager = true
[/code]

Also check how the option interaction-workspace\views.ContactTabBottomHistoryMultiRegion.activate-order is set on your WDE application object
« Last Edit: March 04, 2020, 03:44:55 PM by hsujdik »

Offline MJaskowski

  • Newbie
  • *
  • Posts: 27
  • Karma: 0
Re: Create/add own button to existing view.
« Reply #16 on: March 12, 2020, 08:55:21 AM »
Hello,

Parameter CreateNewRegionManager has been changed on true, that was my first think about it but didn't change anything. If we talk about "interaction-workspace\views.ContactTabBottomHistoryMultiRegion.activate-order" parameter I guess we talk about CME options? If yes I checked it also and this doesn't help me, of course I added view likewise 3 other (standard) views. This did not make my view work. Of course, ordering works correctly.


Offline Janis

  • Full Member
  • ***
  • Posts: 123
  • Karma: 4
Re: Create/add own button to existing view.
« Reply #17 on: November 15, 2021, 09:47:12 PM »
Just in case if someone found this valuable topic like me today. There is one more easy workaround. Like Kubig said, we just have to register our view after ContactsModule is loaded. We can achieve this by choosing right task in the .module-config file:

[code]<task name="InteractionWorkspace.Contacts.canUse" modulesToLoad="CustomTabModule" />[/code]

Many thanks to all participiants!