Skip to content

Update formgroups.md #2995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/form/formgroups.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The `FormGroup` tag exposes the following parameters:

* `Columns` - `int` - defines the number of columns in the group.

* `ColumnSpacing` - `string` - defines the space between the editors in the group.
* `ColumnSpacing` - `string` - defines the horizontal space between the editors in the group.

## Example - Organize FormItems into Groups

Expand All @@ -51,7 +51,7 @@ You can organize some FormItems into logical groups. You can configure the label
<FormItem LabelText="Age" Field="@nameof(Person.Age)" ColSpan="2"></FormItem>
<FormItem LabelText="Email" Field="@nameof(Person.Email)" ColSpan="2"></FormItem>
</FormGroup>
<FormGroup LabelText="Employee Information" ColumnSpacing="25px">
<FormGroup LabelText="Employee Information">
<FormItem LabelText="Company Name" Field="@nameof(Person.CompanyName)"></FormItem>
<FormItem LabelText="Position" Field="@nameof(Person.Position)"></FormItem>
</FormGroup>
Expand Down
Loading