Skip to content

Commit dac4b26

Browse files
authored
Update formgroups.md (#2995)
Added more description to the ColumnSpacing parameter. Removed Unnecessary and possibly misleading usage of the ColumnSpacing parameter in the example.
1 parent c176113 commit dac4b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/form/formgroups.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The `FormGroup` tag exposes the following parameters:
2525

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

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

3030
## Example - Organize FormItems into Groups
3131

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

0 commit comments

Comments
 (0)