Genesys CTI User Forum

Genesys CTI User Forum => Genesys-related Development => Topic started by: aroyappan on May 10, 2016, 02:46:13 AM

Title: WDE Disposition Customization
Post by: aroyappan on May 10, 2016, 02:46:13 AM
Hi,

I'm trying to modify InteractionExtensionSample, to display disposition next to contact and response tab. When i do that my Interaction Window is blank.

Is it possible to move the disposition to the right panel next to contact and response tab?

Regards,
Royappan
Title: Re: WDE Disposition Customization
Post by: abudwill on May 10, 2016, 09:12:11 AM
Your question is not entirely clear to me.

First, if a view shows up blank and shouldn't, check IWS logs - likely an exception occurred and the view couldn't finish rendering.

You may need to post a screenshot of what you are talking about.  Those tabs that you speak of are functions/features in IWS (Contact would be UCS, Responses would be standard response library).  Do you want your disposition control to show up inside the views that activate when you click on Contact or Responses?  If so, I would discourage this.  Those tabs are for specific functions, not dispositions.

Consider adding a 3rd tab just for dispositions.

Or better yet just stick your custom disposition control in the left pane if IWS under the call controls.  See Genesys support site for description of regions/views and the hierarchy - this will demonstrate/show you where you can place your new view.
Title: Re: WDE Disposition Customization
Post by: aroyappan on May 10, 2016, 03:06:06 PM
[b]Move Region[/b]
I want to move the disposition view to a CaseViewSideButtonRegion (New tab next to Contact & Standard Response). From the Genesys documentation. I see that we can replace the exiting view. I was able to remove the "DispositionCodeView" from the "InteractionDetailsDispositionsRegion" using the below code but couldn't remove the "InteractionDetailsDispositionsRegion" completely.

            [code]viewManager.ViewsByRegionName["InteractionDetailsDispositionsRegion"].RemoveAt(0);[/code]

To remove the view region, it required parent view. How do I get parent view object?
[code]        void RemoveViewInRegion(object parentView, string regionName, string instantiateViewName);
[/code]

Is it possible to move the disposition view?
Title: Re: WDE Disposition Customization
Post by: aroyappan on May 10, 2016, 03:28:23 PM
I was able to remove the disposition view using the below code:

[code]            viewManager.ViewsByRegionName["InteractionDetailsRegion"].RemoveAt(0);
[/code]
Title: Re: WDE Disposition Customization
Post by: bharath on November 15, 2017, 07:21:35 AM
I want to move the disposition view to a CaseViewSideButtonRegion (New tab next to Contact)

Is it possible to move the disposition view?

If means, how it will be ?
Title: Re: WDE Disposition Customization
Post by: shahzeb on July 25, 2019, 07:49:15 AM
Hi,

Yes it is possible ... I have done it.
email me if you want to know how to do it

shahzeb.iqbal@gmail.com
Title: Re: WDE Disposition Customization
Post by: piotrwl on February 05, 2021, 10:19:16 AM
Is there anyone who can provide a solution to this problem?