//function, addDecoration(), flash() //Contains client side reusable functions for the Platform UI only. NOT for use in the Portal, Mobile, or Agent Workspace. //When updating this script, use Web Browser Ctrl + Shift + Del to clear cached files. //Call attention to a Mandatory field in a standard way. function oc_ShowMandatoryField(FieldToHighlight, MessageForDisplay) { var ocOrange = "#F57F29"; //Orange color from the Optum logo. var ocMandatoryDecorationColor = "color-red"; var ocMandatoryField_FlashConstant = -4; //-4 indicates seconds. var ocMandatoryField_DecorationIcon = "icon-alert"; //! icon with a circle around it. g_form.addErrorMessage(MessageForDisplay); //g_form.addDecoration(FieldToHighlight, ocMandatoryField_DecorationIcon, MessageForDisplay); g_form.addDecoration(FieldToHighlight, ocMandatoryField_DecorationIcon, MessageForDisplay, ocMandatoryDecorationColor); g_form.flash(FieldToHighlight, ocOrange, ocMandatoryField_FlashConstant); }