Dynamics CRM から HTML Web リソースに値を取得しようとしています。私はこれを見つけて、それからコードを作成しようとしました:
https://msdn.microsoft.com/en-us/library/jj602964(v=crm.7).aspx
var nameValue = Xrm.Page.getAttribute("name").getValue();
出すために使うと書いてあります。
私のコードは次のとおりです(アラートは、正しい値を取得したかどうかを試すだけです):
<html><head>
<meta charset="utf-8">
</head>
<body>
<button onclick="getquotenumber()">Try it</button>
<script>
function getquotenumber() {
var getquote = Xrm.Page.getAttribute("quotenumber").getValue();
alert(getquote);
}
</script>
</body></html>
「Try it」をクリックしても何も起こりません!私は何を間違っていますか?
ありがとう、ヨハネス