LogoLogo
WebsiteCommunity
  • Overview
    • Introduction
    • How to use it? In 5 steps
  • Importer
    • React Embed
    • Angular Embed
    • Bubble.io Embed
    • HTML & JS Embed
    • Text Customization
    • Directly Enter your Data
    • Select Header Row
  • Data Retrieval
    • Using Webhook
    • Using Frontend Callback
  • Validations
    • Base Validations
    • Advanced Validations
  • Features
    • Data Seeding
    • Import Excel with Image
    • Automated Import
    • Runtime Schema
    • Custom Validation
    • Default Value
    • Column Description
    • Freeze Columns
    • Multiselect Dropdown
    • Output Customization
  • Widget Customization
  • Column Warning
  • Platform
    • Email Alerts
    • Activity Page
    • Manage Project
    • Make Your Team
    • How subscription works?
  • Additional Resources
    • FAQs
    • Architecture
    • Data Migrations
    • Selfhost Impler
    • Run Impler locally
    • Writing effectively into .xlsm files
  • Changelog
Powered by GitBook
On this page
  • How it Works
  • Implementation Guide

Was this helpful?

Edit on GitHub
Export as PDF

Column Warning

The Warning Column feature allows you to show helpful suggestions to users without blocking their data import. Unlike errors that stop the import process, warnings let users proceed while highlighting potential issues.

How it Works

Two Types of Validations

Validation Type
Behaviour
Visual Indicator

Errors

Block data submission

Red background

Warning

Allow submission with notices

Yellow background

Key Benefits

  • Key Benefit: Users are informed of any issues through warnings, but their uploads aren’t blocked.

Implementation Guide

Basic Structure

Every warning validation function follows this pattern:

const axios = require('axios');
exports.code = async (params) => {
  const result = [];
  // Loop through each item in the dataset
  for (const item of params.data) {
    result.push({
      index: item.index,
      warnings: {
        Country: 'Please specify your country',
      },
    });
  }

  return result;
};;
PreviousWidget CustomizationNextEmail Alerts

Last updated 1 day ago

Was this helpful?


If you have any questions, suggestions, or comments. Feel free to reach out to us over . We’re constantly improving to deliver the best Data Importer for your product, and we value your input.

Discord