Xperience Community Forms Toolkit is an open-source collection of practical form extensions for Xperience by Kentico. It provides secure CSV, Excel, and XML exports for form submissions, bulk and filtered submission removal, and a native administration action for cloning forms without copying submissions or runtime integrations.
The project is developed and maintained by Andres Villenas at SimpleA. APIs and behavior may change before the first stable release.
| Xperience Version | Library Version |
|---|---|
| 30.11.0 or newer | 1.0.0-beta.4 |
The package is build-verified through 31.7.2 and runtime smoke-tested on 31.1.2. Newer releases may work but require compatibility validation. See the compatibility policy.
Add the package to your application using the .NET CLI:
dotnet add package XperienceCommunity.FormsToolkit --version 1.0.0-beta.4Register the toolkit and its packaged administration extension:
builder.Services.AddFormsToolkit();
// Later, while mapping endpoints:
app.MapControllers();Form cloning is enabled by default. To hide the Clone form action while keeping the submission export features enabled, configure the toolkit during registration:
builder.Services.AddFormsToolkit(options =>
{
options.EnableFormCloning = false;
});Grant the Export form submissions and/or Delete form submissions permissions to the appropriate administration roles, then find the corresponding actions under Forms -> selected form -> Submissions. Users with Xperience's Forms Create permission can use Clone form from each row on the Forms listing.
View the Usage Guide for detailed instructions as features become available.
Instructions for contributing to this project are available in CONTRIBUTING.md.
Maintainers can find the versioning and publishing procedure in the Release Process.
Distributed under the MIT License. See LICENSE.md and
THIRD-PARTY-NOTICES.md for more information.
This project is maintained by Andres Villenas and SimpleA. It is not an official Kentico product and is not covered by Kentico product support.
Report problems through the repository's GitHub issues.