如何使用Javascript,OData端点从查找字段中获取选项设置值

时间:2017-11-23 09:13:42

标签: javascript odata dynamics-crm

我可以从Account中检索任何文本字段值,并将值设置为Contact中的文本字段。但是当我尝试在选项集字段中使用相同的代码时得到invalid type

在这种情况下,parentcustomeridContact中的查找字段,用于查找Accountnew_GroupofAccountAccount中的选项集架构名称,而new_groupofaccountcontactContact中的选项集字段名称。如果parentcustomerid有价值,我想要实现的目标,我希望Account中设置的选项值反映在new_groupofaccountcontact的{​​{1}}中。两个选项集字段都使用相同的全局选项设置值。

这是我的js代码:



contact




非常感谢任何帮助。提前谢谢。

1 个答案:

答案 0 :(得分:0)

基本上代码是正确的,只需要从OData查询中传递TextAlignment选项集检索,如protected override void OnLayout(bool changed, int left, int top, int right, int bottom) { _labelTextView = new TextView(Context) { Background = ContextCompat.GetDrawable(Context, Resource.Drawable.blue_circle), Text = "N/A", Gravity = GravityFlags.Center, TextAlignment = TextAlignment.Center, }; _labelTextView.Left = left; _labelTextView.Top = top + 20; _labelTextView.Bottom = bottom - 50; _labelTextView.Right = right; base.OnLayout(changed, left, top, right, bottom); }

希望将来有人会受益。