In this guide, Busra Sengul discusses managing form submissions in Umbraco Forms, highlighting the lack of built-in bulk deletion options. She presents a SQL-based solution for safely deleting entries before a specified date, ensuring referential integrity. The approach allows for targeted deletions by form, enhancing data management efficiency.
Plugin for Newsletter Studio to integrate with Umbraco Forms.
Nik Rimington encountered a Null Reference Exception when submitting an Umbraco Form due to a query string parameter named "model" conflicting with automatic model binding in .NET Framework. The solution involved creating a custom controller and renaming the action parameter to "umbFormModel," resolving the issue.
Newsletter Studio has released a new package integrating Umbraco Forms with Newsletter Studio, enhancing form submission capabilities. It introduces two workflows: sending transactional emails with customizable content and adding recipients to mailing lists. The extension is open source, available on GitHub, and can be installed via NuGet.
Warren Buckley shares a code snippet for validating Umbraco Forms to prevent HTML submissions. Since Umbraco Forms lacks this feature by default, the provided solution uses a notification handler to check form fields against a regular expression, returning an error if HTML is detected.
This package extends Umbraco Forms by integrating the Drawing Captcha App
In upgrading Umbraco from v10.8.7 to v13.5.2, Johan Reitsma encountered a migration issue with Umbraco Forms due to missing columns, leading to an "Invalid column name" error. He recommends a workaround: first install Umbraco Forms 13.3.0, then upgrade to 13.4.0, and finally to the latest version to avoid this problem.
Nathaniel Nunes discusses integrating Umbraco Forms with a third-party REST API by creating a custom Workflow Type. He details the process of adding custom request headers to form submissions, including project setup, coding, and configuration steps, ultimately enabling successful API interactions.
Featuring guest posts by Paul Sterling on "Use Umbraco Forms Workflows to Enhance Your Forms Functionality" and Paul Seal on "How to create a Colour Theme Picker using Contentment"
In this post, Busra Sengul discusses creating a custom field in Umbraco Forms for Umbraco 12+, specifically an "Address Lookup" field. The guide includes steps for installation, defining the field type, and creating necessary HTML and CSHTML files to handle both visible and hidden data. This custom field facilitates efficient form submissions.