我有一个组合框从CRM中提取一组选项。组合框是使用以下代码在.xaml中创建的:
private void Transfer_Click(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
if (cmbTransfer.SelectedIndex != 0)
{
//UpdatePhoneCallActityWithTransferInfo("1233");
this.FireRequestAction(new RequestActionEventArgs("CTIControl", "FireEvent", "HandleTransfer"));
//await Task.Delay(20000);
}
}
在C#中,我将comboboxItem.Content设置为“Transfer”。然后我用comrBoxItem.Content填充要转移到CRM的语言。
现在,当我点击转移下拉菜单时,我会收到以下信息: Transfer Dropdown UI
我希望下拉菜单中的“转移”不会出现。你们有什么想法吗?
@Sajeetharan:使用以下行填充组合框:
.find
实体uscb_language是来自CRM的语言列表
触发操作以使用以下方法填充此字段:
Location.find({
loc: {
$near: {
$geometry: {
type: "Point",
coordinates: coords
},
$maxDistance: maxDistance
}
}
}).then((err, locations) => {
// do what you want here
})