我创建了一个自定义网络资源(HTML文件),它有一个文本区域和一个提交按钮。 我以这种方式称呼这个网络资源:
Xrm.Utility.openWebResource("new_simple_modal", null,320, 320);
HTML文件的名称为new_simple_modal
。
当我按下功能区按钮时,会出现模态。
我通过自定义功能区按钮从Campaign
实体调用此模式。
现在,我希望当单击submit
按钮时,输入到模态的文本出现在已打开的广告系列记录的一个字段中。
并且还想要更改实体的状态代码。
但是,我需要访问HTML资源文件的那个按钮,或者访问打开的记录实体。
我在HTML文件中尝试了这个:
Xrm.Page.data.entity.getAttribute("crmfieldname")=value;
parent.Xrm.Page.data.entity.getAttribute("crmfieldname")=value;
window.parent.Xrm.Page.data.entity.getAttribute("crmfieldname")=value;
但没有成功,我可以从实体访问HTML元素吗? 我想使用onClick按钮,我该如何访问? 任何帮助都会受到欢迎。
答案 0 :(得分:1)
这不是设置字段值的正确方法。
使用此:#initialize variable to be between 0 and 1
variable = tf.Variable(tf.random_uniform([self.numOutputs], 0, 1))
#Clip the variable to force the result to be between 0 and 1 during training
variableClipped = tf.clip_by_value(variable, 0, 1)
#Set the loss to be the difference between the clipped variable and actual variable.
#Anytime it goes outside the variable range the loss will increase,
#and the optimizer will push it back within the desired range.
loss = originalLossEquation + tf.reduce_sum((variable - variableClipped)**2)