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 に答える