var Sdk = window.Sdk || {}; (function () { this.formOnLoadHideNavigation = function(executionContext) { var formContext = executionContext.getFormContext(); formContext.ui.headerSection.setBodyVisible(false); //formContext.ui.headerSection.setCommandBarVisible(false); formContext.ui.headerSection.setTabNavigatorVisible(false); } // Code to run in the column OnChange event this.attributeOnChange = function (executionContext) { var formContext = executionContext.getFormContext(); // Add your code from the other tables here } // Code to run in the form OnSave event this.formOnSave = function (executionContext) { var formContext = executionContext.getFormContext(); // Add your code from the other tables here } }).call(Sdk);