我正在 CRM 2011 实体表单中实现自定义下拉菜单(选择控件)。选择控件的 html 位于我作为 web 资源导入的 html 文件中。我已经以实体形式添加了该网络资源。现在在 onload 函数中,我试图用一些硬编码值填充该选择控件,但在表单加载时显示以下错误:
这是onload函数:
function onload()
{
var select = document.getElementById("WebResource_State").contentWindow.document.getElementById("state");
select.options[select.options.length] = new Option('Text 1', 'Value1');
}
上述错误在此函数的第二行触发。请建议缺少什么。
谢谢