Skip to content

Commit

Permalink
Form: remove colSpan from tabs (DevExpress#7069)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladaskorohodova committed Feb 17, 2025
1 parent 0bc11ae commit f2d9558
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ The content of a tab can be organized in columns. The [colCount](/api-reference/
colSpan: 2,
tabs: [{
title: "Info",
// Makes this tab span both general columns
colSpan: 2,
// Organizes items inside this tab in three columns
colCount: 3,
items: ["position", "hireDate", "city"]
Expand All @@ -45,7 +43,6 @@ The content of a tab can be organized in columns. The [colCount](/api-reference/
<dxi-item itemType="tabbed" [colSpan]="2">
<dxi-tab
title="Info"
[colSpan]="2" <!-- Makes this tab span both general columns -->
[colCount]="3"> <!-- Organizes items inside this tab in three columns -->
<dxi-item dataField="position"></dxi-item>
<dxi-item dataField="hireDate"></dxi-item>
Expand Down Expand Up @@ -92,7 +89,6 @@ The content of a tab can be organized in columns. The [colCount](/api-reference/
<DxTabbedItem :col-span="2">
<DxTab
title="Info"
:col-span="2"
:col-count="3">
<DxSimpleItem data-field="position" />
<DxSimpleItem data-field="hireDate" />
Expand Down Expand Up @@ -161,7 +157,6 @@ The content of a tab can be organized in columns. The [colCount](/api-reference/
<TabbedItem colSpan={2}>
<Tab
title="Info"
colSpan={2}
colCount={3}>
<SimpleItem dataField="position" />
<SimpleItem dataField="hireDate" />
Expand Down

0 comments on commit f2d9558

Please sign in to comment.