Skip to content

Commit 22b11ae

Browse files
authored
993923: conten
1 parent c5dc06a commit 22b11ae

File tree

4 files changed

+12
-117
lines changed

4 files changed

+12
-117
lines changed

ej2-asp-core-mvc/tree-grid/EJ2_ASP.MVC/columns/column-spanning.md

Lines changed: 3 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,6 @@ In the following example, Employee **Davolio** is scheduled for analysis from "9
2323
{% endhighlight %}
2424
{% endtabs %}
2525

26-
<!-- {% if page.publishingplatform == "aspnet-core" %}
27-
28-
{% tabs %}
29-
{% highlight c# tabtitle="ColumnSpanning.cs" %}
30-
{% include code-snippet/tree-grid/columns-mvc/spanning/spanning.cs %}
31-
{% endhighlight %}
32-
{% endtabs %}
33-
34-
{% elsif page.publishingplatform == "aspnet-mvc" %}
35-
36-
{% tabs %}
37-
{% highlight razor tabtitle="CSHTML" %}
38-
{% include code-snippet/tree-grid/columns-mvc/spanning/razor %}
39-
{% endhighlight %}
40-
{% highlight c# tabtitle="ColumnSpanning.cs" %}
41-
{% include code-snippet/tree-grid/columns-mvc/spanning/spanning.cs %}
42-
{% endhighlight %}
43-
{% endtabs %}
44-
{% endif %} -->
45-
4626
## Limitations
4727

4828
Column spanning in the ASP.MVC TreeGrid has the following limitations:
@@ -54,13 +34,11 @@ Column spanning in the ASP.MVC TreeGrid has the following limitations:
5434

5535
> When using column spanning, ensure that the spanned cells do not interfere with TreeGrid operations such as sorting, filtering, or editing, as this may lead to unexpected behavior.
5636
57-
## Column spanning using EnableColumnSpan property
58-
59-
The Syncfusion ASP.MVC TreeGrid introduces a simplified approach to horizontally merge cells with identical values in the same row across adjacent columns.
37+
## Column spanning implementation through API
6038

61-
The column spanning feature in the Syncfusion ASP.MVC TreeGrid can be enabled using `EnableColumnSpan` property which significantly enhances readability and delivers a clean, professional look by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
39+
The Syncfusion TreeGrid provides an API-based approach to horizontally merge cells with identical values in the same row across adjacent columns.
6240

63-
To enable column spanning, set the `EnableColumnSpan` property to **true** in the TreeGrid configuration.
41+
The column spanning feature in the Syncfusion TreeGrid can be enabled using `EnableColumnSpan` property to **true** in the TreeGrid configuration, which significantly enhances readability and delivers a cleaner layout by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
6442

6543
{% tabs %}
6644
{% highlight razor tabtitle="CSHTML" %}
@@ -71,26 +49,6 @@ To enable column spanning, set the `EnableColumnSpan` property to **true** in th
7149
{% endhighlight %}
7250
{% endtabs %}
7351

74-
<!-- {% if page.publishingplatform == "aspnet-core" %}
75-
76-
{% tabs %}
77-
{% highlight c# tabtitle="Spanningapi.cs" %}
78-
{% include code-snippet/tree-grid/columns-mvc/column-spanning/spanningapi.cs %}
79-
{% endhighlight %}
80-
{% endtabs %}
81-
82-
{% elsif page.publishingplatform == "aspnet-mvc" %}
83-
84-
{% tabs %}
85-
{% highlight razor tabtitle="CSHTML" %}
86-
{% include code-snippet/tree-grid/columns-mvc/column-spanning/razor %}
87-
{% endhighlight %}
88-
{% highlight c# tabtitle="Spanningapi.cs" %}
89-
{% include code-snippet/tree-grid/columns-mvc/column-spanning/spanningapi.cs %}
90-
{% endhighlight %}
91-
{% endtabs %}
92-
{% endif %} -->
93-
9452
> In the sample, column spanning is disabled at the column level for the price based columns such as "Planned Budget" and "Actual Spend" by setting each column's `EnableColumnSpan` property to **false**.
9553
9654
### Limitations
@@ -104,7 +62,3 @@ Column spanning feature is not compatible with all the features which are availa
10462
* Detail Template
10563
* Editing
10664
* Export
107-
108-
## See Also
109-
110-
* [Row spanning in Syncfusion<sup style="font-size:70%">&reg;</sup> TreeGrid](https://ej2.syncfusion.com/asp.mvc/documentation/treegrid/row/row-spanning)

ej2-asp-core-mvc/tree-grid/EJ2_ASP.MVC/row/row-spanning.md

Lines changed: 3 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,6 @@ In the following demo, the **Lunch Break** cell spans multiple rows in the "1:00
2323
{% endhighlight %}
2424
{% endtabs %}
2525

26-
<!-- {% if page.publishingplatform == "aspnet-core" %}
27-
28-
{% tabs %}
29-
{% highlight c# tabtitle="RowSpanning.cs" %}
30-
{% include code-snippet/tree-grid/row/row-spanning/spanning.cs %}
31-
{% endhighlight %}
32-
{% endtabs %}
33-
34-
{% elsif page.publishingplatform == "aspnet-mvc" %}
35-
36-
{% tabs %}
37-
{% highlight razor tabtitle="CSHTML" %}
38-
{% include code-snippet/tree-grid/row/row-spanning/razor %}
39-
{% endhighlight %}
40-
{% highlight c# tabtitle="RowSpanning.cs" %}
41-
{% include code-snippet/tree-grid/row/row-spanning/spanning.cs %}
42-
{% endhighlight %}
43-
{% endtabs %}
44-
{% endif %} -->
45-
4626
## Limitations
4727

4828
Row spanning in the ASP.MVC TreeGrid has the following limitations:
@@ -54,13 +34,11 @@ Row spanning in the ASP.MVC TreeGrid has the following limitations:
5434

5535
> When using row spanning, ensure that the spanned cells do not interfere with TreeGrid operations such as sorting, filtering, or editing, as this may lead to unexpected behavior.
5636
57-
## Row spanning using EnableRowSpan property
58-
59-
The Syncfusion ASP.MVC TreeGrid introduces a simplified approach to vertically merge cells with identical values in the same column across consecutive rows.
37+
## Row spanning implementation through API
6038

61-
The row spanning feature in the Syncfusion ASP.MVC TreeGrid can be enabled using `EnableRowSpan` property which significantly enhances readability and delivers a clean, professional look by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
39+
The Syncfusion TreeGrid provides an API-based approach to vertically merge cells with identical values in the same column across consecutive rows.
6240

63-
To enable column spanning, set the `EnableRowSpan` property to **true** in the TreeGrid configuration.
41+
The row spanning feature in the Syncfusion TreeGrid can be enabled using `EnableRowSpan` property to **true** in the TreeGrid configuration, which significantly enhances readability and delivers a cleaner layout by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
6442

6543
{% tabs %}
6644
{% highlight razor tabtitle="CSHTML" %}
@@ -71,26 +49,6 @@ To enable column spanning, set the `EnableRowSpan` property to **true** in the T
7149
{% endhighlight %}
7250
{% endtabs %}
7351

74-
<!-- {% if page.publishingplatform == "aspnet-core" %}
75-
76-
{% tabs %}
77-
{% highlight c# tabtitle="Spanningapi.cs" %}
78-
{% include code-snippet/tree-grid/row/spanning/rowspanningapi.cs %}
79-
{% endhighlight %}
80-
{% endtabs %}
81-
82-
{% elsif page.publishingplatform == "aspnet-mvc" %}
83-
84-
{% tabs %}
85-
{% highlight razor tabtitle="CSHTML" %}
86-
{% include code-snippet/tree-grid/row/spanning/razor %}
87-
{% endhighlight %}
88-
{% highlight c# tabtitle="Spanningapi.cs" %}
89-
{% include code-snippet/tree-grid/row/spanning/rowspanningapi.cs %}
90-
{% endhighlight %}
91-
{% endtabs %}
92-
{% endif %} -->
93-
9452
> In the sample, row spanning is disabled at the column level for the price based columns such as "Planned Budget" and "Actual Spend" by setting each column's `enableRowSpan` property to **false**.
9553
9654
### Limitations
@@ -104,7 +62,3 @@ Row spanning feature is not compatible with all the features which are available
10462
* Detail Template
10563
* Editing
10664
* Export
107-
108-
## See Also
109-
110-
* [Column spanning in Syncfusion<sup style="font-size:70%">&reg;</sup> TreeGrid](https://ej2.syncfusion.com/asp.mvc/documentation/treegrid/columns/column-spanning)

ej2-asp-core-mvc/tree-grid/EJ2_ASP.NETCORE/columns/column-spanning.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,11 @@ Column spanning in the ASP.Core TreeGrid has the following limitations:
3434

3535
> When using column spanning, ensure that the spanned cells do not interfere with TreeGrid operations such as sorting, filtering, or editing, as this may lead to unexpected behavior.
3636
37-
## Column spanning using EnableColumnSpan property
37+
## Column spanning implementation through API
3838

39-
The Syncfusion ASP.Core TreeGrid introduces a simplified approach to horizontally merge cells with identical values in the same row across adjacent columns.
40-
41-
The column spanning feature in the Syncfusion ASP.Core TreeGrid can be enabled using `EnableColumnSpan` property which significantly enhances readability and delivers a clean, professional look by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
42-
43-
To enable column spanning, set the `EnableColumnSpan` property to **true** in the TreeGrid configuration.
39+
The Syncfusion TreeGrid provides an API-based approach to horizontally merge cells with identical values in the same row across adjacent columns.
4440

41+
The column spanning feature in the Syncfusion TreeGrid can be enabled using `EnableColumnSpan` property to **true** in the TreeGrid configuration, which significantly enhances readability and delivers a cleaner layout by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
4542

4643
{% tabs %}
4744
{% highlight cshtml tabtitle="CSHTML" %}
@@ -65,7 +62,3 @@ Column spanning feature is not compatible with all the features which are availa
6562
* Detail Template
6663
* Editing
6764
* Export
68-
69-
## See Also
70-
71-
* [Row spanning in Syncfusion<sup style="font-size:70%">&reg;</sup> TreeGrid](https://ej2.syncfusion.com/asp.core/documentation/treegrid/row/row-spanning)

ej2-asp-core-mvc/tree-grid/EJ2_ASP.NETCORE/row/row-spanning.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,11 @@ Row spanning in the ASP.Core TreeGrid has the following limitations:
4848

4949
> When using row spanning, ensure that the spanned cells do not interfere with TreeGrid operations such as sorting, filtering, or editing, as this may lead to unexpected behavior.
5050
51-
## Row spanning using enableColumnSpan property
51+
## Row spanning implementation through API
5252

53-
The Syncfusion ASP.Core TreeGrid introduces a simplified approach to vertically merge cells with identical values in the same column across consecutive rows.
53+
The Syncfusion TreeGrid provides an API-based approach to vertically merge cells with identical values in the same column across consecutive rows.
5454

55-
The row spanning feature in the Syncfusion ASP.Core TreeGrid can be enabled using `enableRowSpan` property which significantly enhances readability and delivers a clean, professional look by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
56-
57-
To enable column spanning, set the `enableRowSpan` property to **true** in the TreeGrid configuration.
55+
The row spanning feature in the Syncfusion TreeGrid can be enabled using `EnableRowSpan` property to **true** in the TreeGrid configuration, which significantly enhances readability and delivers a cleaner layout by eliminating repetitive data in columns such as "Status", "Permit Status", "Inspection Status" and "Punch List Status".
5856

5957
{% if page.publishingplatform == "aspnet-core" %}
6058

@@ -92,7 +90,3 @@ Row spanning feature is not compatible with all the features which are available
9290
* Detail Template
9391
* Editing
9492
* Export
95-
96-
## See Also
97-
98-
* [Column spanning in Syncfusion<sup style="font-size:70%">&reg;</sup> TreeGrid](https://ej2.syncfusion.com/asp.core/documentation/treegrid/columns/column-spanning)

0 commit comments

Comments
 (0)