Turning on Advanced Mode Uploader

Advanced Mode is a configuration option for an Osmos Uploader that provides end users a feature-rich experience that includes tools like QuickFixes, Formulas, and SmartFill, which are available in Osmos Pipelines.

Enabling Advanced Mode

To turn these on for your Uploader, just set the disableAdvancedMode flag to false in your Uploader configuration snippet.

Osmos.configure({
  schema: {
    fields: [
      ...
    ]
  },
  token: 'your_token',
  ...
  // Set to false to show the advanced version of the uploader, with formulas, SmartFill, and QuickFixes.
  disableAdvancedMode: true
});

For additional settings, see Optional Settings.

Last updated