Hello,
Working on an IWS-related Project.
When we are to conclude a preview call, we have disposition codes displayed on the Interaction Window. What I want is to Show disposition codes as Call Result pull-down menu is not visible to user.
In my code,
if(_viewManager.ViewsByRegionName["InteractionDetailsRegion"] != null)
{
foreach(ViewActivator view in _viewManager.ViewsByRegionName["InteractionDetailsRegion"])
{
if(view.ViewName == "DispositionsView")
{
// view.ViewType = null;
IDispositionsView MyView = view.ViewType as IDispositionsView;
break;
}
}
}
So, I have two questions:
- Can I have retrieve the object reference to Call Result pull-down menu?
- (AND/OR) Is there a way to disable/hide Call Result pull-down menu?
Thank you in advance and best regards,
Ali