Getting Started & Usage

Code with AI for Wix forms, repeaters, and datasets

Many useful Velo features involve the same building blocks: forms, inputs, datasets, repeaters, and collections. Code with AI: Write Velo Code can help create starting points for these patterns when the feature is clearly described.

Form ideas

  • Validate required fields before submit.
  • Show custom success messages.
  • Calculate values before saving.
  • Route submissions based on selected options.
  • Pre-fill member information.

Repeater ideas

  • Filter by category.
  • Search by text input.
  • Sort by newest or price.
  • Show more items after a button click.
  • Open a lightbox from a repeater item.

Dataset ideas

  • Read selected collection fields.
  • Filter dynamic content.
  • Connect user input to collection queries.
  • Handle empty results.
  • Reset filters.

Testing habit

After generating code, test one behavior at a time. If filtering, submission, and display logic are all added at once, it becomes harder to find which part fails.