Skip to main content

Input Widget

Overviewโ€‹

The Input widget is a versatile form component that allows users to enter and edit text, numbers, and other data types. It provides comprehensive validation, formatting, and styling options to create robust form interfaces.

Input Widget

Basic Configurationโ€‹

Global Settingsโ€‹

FieldDescriptionRequired
NameDisplay label for the input fieldYes
Variable/ModelVariable name to bind the input valueYes
Default ValueInitial value when the component loadsNo

Data Typesโ€‹

The input widget supports two primary data types:

String Typeโ€‹

  • Use Case: Text input, formatted strings, masked inputs
  • Features:
    • Input masking for formatted entries
    • Text validation rules
    • Custom placeholder text

Number Typeโ€‹

  • Use Case: Numeric input with validation
  • Features:
    • Min/Max value constraints
    • Step increment control
    • Precision settings for decimal places

Data Type Configurationโ€‹

String Configurationโ€‹

Input Maskingโ€‹

Use masks to format user input automatically:

Mask CharacterPatternDescription
#/\d/Numeric digit
X/[0-9a-zA-Z]/Alphanumeric character
S/[a-zA-Z]/Alphabetic character
A/[a-zA-Z]/Uppercase alphabetic
a/[a-zA-Z]/Lowercase alphabetic
!Escape characterLiteral character

Example Masks:

  • Phone Number: + ## # ## ## ## ##
  • Credit Card: #### #### #### ####
  • Date: ##/##/####
Input String Configuration

Number Configurationโ€‹

SettingDescriptionDefault
MinMinimum allowed valueNone
MaxMaximum allowed valueNone
StepIncrement/decrement step1
PrecisionDecimal placesNone
Input Number Configuration

Validation and Rulesโ€‹

Custom Validation Rulesโ€‹

Add custom validation rules with:

  • Rule Type: Select from predefined validation patterns
  • Value: Validation parameter (e.g., minimum length)
  • Message: Custom error message to display
Input Custom Validation Rules

Screen-based Validationโ€‹

Configure different validation behaviors for different screens:

PropertyDescription
AvailableWhether the widget appears on this screen
VisibleWhether the widget is visible (can use conditions)
RequiredWhether the field is mandatory
DisabledWhether the field is read-only
Input Screen Validation

Styling Optionsโ€‹

Basic Stylingโ€‹

PropertyDescriptionExample
PlaceholderHint text displayed when empty"Enter your name"
WidthComponent width"100%", "200px"
Class NamesCSS classes for custom styling"custom-input, large"

Dynamic Classesโ€‹

Configure classes that change based on conditions:

  • Use the dynamic classes editor
  • Reference form variables and data
  • Apply conditional styling
Input Styling

Advanced Featuresโ€‹

Dynamic Default Valuesโ€‹

Set default values that can reference other form data:

Input Dynamic Default Values

Event Handlingโ€‹

onChange Eventโ€‹

Triggered when the input value changes:

  • Access the new value via event parameter
  • Automatically enforces min/max constraints for numbers
  • Can trigger custom actions and functions

Working with Actions and SF_inputโ€‹

Attaching Actions to onChange Eventโ€‹

You can attach custom actions to the input widget's onChange event to respond to value changes in real-time. This is useful for:

  • Updating other fields based on the input value
  • Triggering calculations or validations
  • Fetching related data from the backoffice
  • Implementing cascading field updates

How to Attach an Actionโ€‹

  1. Navigate to the Global section in the widget configuration
  2. Find the On Change event Button
  3. You can attach actions to the widget
  4. The system will execute your code whenever the input value changes

Accessing Values with SF_inputโ€‹

When working with onChange events, you have access to the SF_input object that contains information about the value change:

SF_input Structure for Input Widgetโ€‹

{
value: /* The value after the change */,
SF_currentIndex: /* The index of the loop where the change has been done, This is only available for Inputs inside a loop */
}

Best Practices for Actionsโ€‹

  1. Keep Actions Lightweight: Avoid heavy computations in onChange events
  2. Debounce API Calls: If fetching data, consider debouncing to avoid excessive requests
  3. Handle Errors: Always include error handling in your action code
  4. Validate Input: Check if values exist before using them
  5. Use Clear Variable Names: Make your code readable for future maintenance

Currency Supportโ€‹

Special handling for currency inputs:

  • Automatic formatting based on locale
  • Currency symbol display
  • Decimal precision control

Integration Featuresโ€‹

Form Integrationโ€‹

When used within a form:

  • Automatic form validation
  • Submit/reset handling
  • Parent form state management

Loop Integrationโ€‹

When used in loops:

  • Access to loop index via SF_currentIndex
  • Independent validation per loop item
  • Dynamic field naming

Action Integrationโ€‹

Configure onClick actions:

  • Custom JavaScript functions
  • API calls and data operations
  • Navigation and UI interactions

Usage Examplesโ€‹

Basic Text Inputโ€‹

Basic Text Input

Phone Number with Maskโ€‹

Input Phone Number

Numeric Input with Constraintsโ€‹

Input Numeric Input with Constraints

Dynamic Default Valueโ€‹

Input Dynamic Default Value

Conditional Visibilityโ€‹

Simple Conditionsโ€‹

Input Simple Conditions

Complex Conditionsโ€‹

Input Complex Conditions

Best Practicesโ€‹

Field Namingโ€‹

  • Use descriptive variable names
  • Follow consistent naming conventions
  • Avoid spaces and special characters in variable names

Validationโ€‹

  • Provide clear error messages
  • Use appropriate data types
  • Set reasonable min/max constraints

User Experienceโ€‹

  • Use meaningful placeholders
  • Group related fields logically
  • Provide immediate feedback on validation

Performanceโ€‹

  • Avoid complex default value expressions
  • Use efficient validation rules
  • Minimize unnecessary re-renders

Troubleshootingโ€‹

Common Issuesโ€‹

  1. Validation Not Working

    • Check required field configuration
    • Verify custom validation rules syntax
    • Ensure proper screen validation setup
  2. Mask Not Applied

    • Verify mask syntax using supported characters
    • Ensure string data type is selected
    • Check for conflicting CSS styles
  3. Default Values Not Loading

    • Verify variable references exist
    • Check expression syntax
    • Ensure referenced data is available
  4. Styling Issues

    • Verify CSS class names
    • Check width/height values
    • Ensure proper CSS specificity

Debug Tipsโ€‹

  • Use browser developer tools to inspect generated HTML
  • Check console for JavaScript errors
  • Verify form data binding in Vue DevTools
  • Test validation rules independently

Browser Compatibilityโ€‹

The input widget is compatible with:

  • Chrome 60+
  • Firefox 55+
  • Safari 12+
  • Edge 79+
  • Textarea Widget: For multi-line text input
  • Select Widget: For dropdown selections
  • Date Widget: For date/time input
  • Currency Widget: For specialized currency handling