Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

To disable the load mask completely, set the syncMode property to ‘false’ as shown in the following sample JS code snippet:

var param = {
    "PAGE_CODE_TYPE" : 'ALERT_CODE',
    "INPUT_ACTION" : 'UPDATE_REFRESH_ACTION',
    "PRODUCT_NAME" : 'ALERTS',
    "INPUT_FUNCTION_CODE" : 'VSBLTY',
    "INPUT_SUB_PRODUCT" : 'ALERTS',
    "IS_FILTER_FORM" : false,
    "MSG_ID" : msgId
  };
  ct.Ajax({
    params : param,
    syncMode : false, // When syncMode is 'false', load mask is disabled.
    success : function(responseP, optionsP) {
      widObj.refreshWidgetData();
    }
  });

syncMode property is set to 'false' in above code snippet (line number 12).

Refer the following pages:

  • No labels