我使用以下代码从CRM 2011中的整数(整数)字段中删除逗号:
function Form_onload()
{
document.getElementById("new_universalid").value =Xrm.Page.data.entity.attributes.get("new_universalid").getValue();
}
问题在于,对于没有“new_universalid”值的任何帐户/联系人,它会显示“null”一词。
我的目标是显示一个空白字段,而不是单词NULL。
提前感谢任何建议。
答案 0 :(得分:1)
我能解释的最简单的方法,最明显的理解如下,只需检查以确保在分配之前该值不为空:
function Form_onload()
{
var new_uid=Xrm.Page.data.entity.attributes.get("new_universalid").getValue();
if(new_uid != null){
document.getElementById("new_universalid").value = new_uid;
}
}