Dynamics 365 获取值 设置值

Posted ly1998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dynamics 365 获取值 设置值相关的知识,希望对你有一定的参考价值。

//获取new_name的值(单行文本)
Xrm.Page.getAttribute("new_name").getValue()
//设置new_name的值(单行文本)
Xrm.Page.getAttribute("new_name").setValue("1121")
//获取客户集合(查找)
Xrm.Page.getAttribute("new_accounid").getValue()
//设置客户值(查找)
Xrm.Page.getAttribute("new_accounid").setValue([{entityType: "account",name: "吴泉",id: "{B26F1B26-8F69-E911-B01C-000C29794B17}"}])
//获取选项集的值
Xrm.Page.getAttribute("new_optionset").getValue()
//设置选项集的值
Xrm.Page.getAttribute("new_optionset").setValue(100000001)
//获取多行文本的值
Xrm.Page.getAttribute("new_textarea").getValue()
//设置多行文本的值
Xrm.Page.getAttribute("new_textarea").setValue("我修改值了")
//获取Bool的值
Xrm.Page.getAttribute("new_isornot").getValue()
//设置bool 的值
Xrm.Page.getAttribute("new_isornot").setValue(false)
//获取多项选项集的值
Xrm.Page.getAttribute("new_optionsetlist").getValue()
//设置多项选项集的值
Xrm.Page.getAttribute("new_optionsetlist").setValue([100000001,100000002])
//获取整数的值
Xrm.Page.getAttribute("new_integer").getValue()
//设置整数的值
Xrm.Page.getAttribute("new_integer").setValue(111)
//获取浮点数的值
Xrm.Page.getAttribute("new_double").getValue()
//设置浮点数的值
Xrm.Page.getAttribute("new_integer").setValue(111)
//获取十进制数的值
Xrm.Page.getAttribute("new_decimalnumber").getValue()
//设置十进制数的值
Xrm.Page.getAttribute("new_decimalnumber").setValue(111)
//获取货币的值
Xrm.Page.getAttribute("new_currency").getValue()
//设置货币的值
Xrm.Page.getAttribute("new_currency").setValue(111)
//获取时间和日期的值
Xrm.Page.getAttribute("new_datetime").getValue()
//设置时间和日期的值
Xrm.Page.getAttribute("new_datetime").setValue(new Date("2019-1-1 12:30:12"))

以上是关于Dynamics 365 获取值 设置值的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript Dynamics CRM - 获取或设置值查找字段值

Javascript padStart() 在警报框中正常工作,但在 Dynamics 365 CRM 中的电子邮件记录中不能正常工作

创建一个dynamics 365 CRM online plugin - 使用Shared Variables 在plugins 之前传递data

Dynamics 365 OP V9.1启用邮箱失败问题

Dynamics 365 OP V9.1启用邮箱失败问题

Dynamics 365 OP V9.1启用邮箱失败问题