HIDE FIELD . FIELD LABEL Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/hide-field-field-label/ Microsoft Dynamics CRM . Microsoft Power Platform Mon, 17 Feb 2014 08:05:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.1 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 HIDE FIELD . FIELD LABEL Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/hide-field-field-label/ 32 32 176351444 CHANGE FIELDS LABEL ON ONLOAD OR ONCHANGE USING JAVASCRIPT IN MSCRM 2011 ,MSCRM 2013 http://microsoftdynamics.in/2014/02/17/change-fields-label-on-onload-or-onchange-using-javascript-in-mscrm-2011-mscrm-2013/ Mon, 17 Feb 2014 08:05:00 +0000 http://microsoftdynamics.in/2014/02/17/change-fields-label-on-onload-or-onchange-using-javascript-in-mscrm-2011-mscrm-2013/ function onLoad_ChangeLabel() {    // get the value of field in variablevar lblIncomeField1 = Xrm.Page.getAttribute(“fieldname”).getValue();  // value not equal to null        if (lblIncomeField1 != null) {            Xrm.Page.ui.controls.get(“Oldfieldname”).setLabel(newfieldname);        }} SOURCE : JUST2CODE.IN Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post CHANGE FIELDS LABEL ON ONLOAD OR ONCHANGE USING JAVASCRIPT IN MSCRM 2011 ,MSCRM 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
function onLoad_ChangeLabel() {
    // get the value of field in variable
var lblIncomeField1 = Xrm.Page.getAttribute(“fieldname”).getValue();

 // value not equal to null
        if (lblIncomeField1 != null) {
            Xrm.Page.ui.controls.get(“Oldfieldname”).setLabel(newfieldname);
        }
}


SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post CHANGE FIELDS LABEL ON ONLOAD OR ONCHANGE USING JAVASCRIPT IN MSCRM 2011 ,MSCRM 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
2840