function DisableTabSectionFields(TAB_ID, SECTION_IDX) { //TAB_ID –> tab0 for the first TAB var tab = document.getElementById(TAB_ID); //SECTION_IDX –> 0 for the first section var sec = tab.childNodes.rows; var elems = sec.getElementsByTagName(‘*’); var i=0; for(i=0; i < elems.length; ++i) { if (elems.Disabled != “undefined”) elems.Disabled=true; } } Disponibilizado pelo colega João Pedro Silva
top of page
Search
Recent Posts
See AllOn a customer field, if the requirement is to only show Accounts, please add this line to the OnLoad of the form: //Show only Account...
130
Please find below an example of calling the Execute method to run a workflow on CRM 365 Cloud. let Id = formContext.data.entity.getId().r...
140
Let’s assume that you create a Cloud Flow that you will interact with for example trough a button in the account form ribbon. When i...
100
bottom of page
Comments