我正在尋找一種方法或方式如何檢查在CRM表單中的文本字段爲「null」文本字段屬性/方法Dynamics CRM中2011
我有一個標籤,也有部分和文本字段在裏面;
此外,我使用該功能來隱藏/顯示選項卡。
function setVisibleTabSection(tabname, TextFieldName, show) {
var tab = Xrm.Page.ui.tabs.get(tabname);
if (tab != null) {
if (TextFieldName == null)
tab.setVisible(show);
else {
var section = Xrm.Page.data.entity.attributes.get(TextFieldName).getValue();
if (section != null) {
show == true;
tab.setVisible(show);
}
}
}
}
但是,它不起作用。文本框內沒有任何內容,並且該標籤仍然展開。
順便說一下,參數,這是我給的功能:「tab_8」,「new_conf_report」,假 其中塞康一個文本字段的名稱
評論實現: – AdamV 2013-03-25 23:50:02