0

我在 Dynamics 2011 表单上进行了自定义查找。我还有一个 javascript 库来进行各种基本验证。我的问题是,如何使用 javascript 在查找中指向一个值?下面的 javascript 不起作用...另请参阅图片。

任何帮助表示赞赏!

http://i.imgur.com/d8vN0H5.png 查找

if (Xrm.Page.getAttribute("new_contactmethod").getValue() == Jog) 
{

Xrm.Page.ui.tabs.get("WorkoutDetails").sections.get("Section_Workout").setVisible(true);
  }
else
{
Xrm.Page.ui.tabs.get("WorkoutDetails").sections.get("Section_Workout").setVisible(false);
Xrm.Page.getAttribute("new_distance").setValue(null);
4

1 回答 1

1

您可以通过这种方式检索查找名称:

var methodValue = Xrm.Page.getAttribute("new_contactmethod").getValue();
// we check if the lookup is not empty
if (methodValue != null) {
    var methodName = methodValue[0].name;
    if (methodName == "Jog") {
        // your code here
    }
    else {
        // your code here
    }
}
于 2013-05-17T13:43:19.343 回答