Genesys CTI User Forum > Genesys-related Development
WDE example check box
Daere:
Hi to everyone!
I've tested the Genesys WDE sample code for disposition code. Into this sample, the view was developed to implement the check box for disposition code selection instead of the radio buttons, but it doesn't work because it show me always the radio buttons.
Can anyone help me?
Thanks a lot.
Kubig:
Did you check the logs to find out if the module was loaded and used properly?
Daere:
Hi,
into the log there aren't error, but in WDE 8.5 developer's guide, at page 157 it's explain how replace the disposition code view with check box. In the sample "Genesyslab.Desktop.Modules.ExtensionSample" there is the DispositionCodeExView.xaml that contains radio button implementation instead of check box.
Why the guide contains a check box example that it's not developed and how can I develop the check box feature?
Thank you so much. ;D
cavagnaro:
Idea is you to replace the existing view with yours. The original code of radio button obviously doesn't exist as it is embedded on the WDE. You need to create yours and replace existing one. That is explained on docs.
PeteHoyle:
If you want checkboxes change the DispositionCodeExView.xaml
from:
<RadioButton IsChecked="{Binding IsSelected}" GroupName="DispositionCodeGroupName" Click="radioButton_Checked" ToolTip="{Binding Description}">
<TextBlock Margin="5,0,0,0" Foreground="{DynamicResource SilverBorderColorBrush}" Text="{Binding DisplayName}" />
</RadioButton>
to:
<CheckBox IsChecked="{Binding IsSelected}" Click="radioButton_Checked" ToolTip="{Binding Description}">
<TextBlock Margin="5,0,0,0" Foreground="{DynamicResource SilverBorderColorBrush}" Text="{Binding DisplayName}" />
</CheckBox>
Navigation
[0] Message Index
[#] Next page
Go to full version