Skip to content

Commit 0ba9f8a

Browse files
author
pipeline
committed
bug(EJ2-4288): Grid Resize sample corrected.
1 parent 97149fd commit 0ba9f8a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/grid/column/columnresizing-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/grid/column/columnresizing.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
<e-column field='OrderDate' headerText='Order Date' width='200' format="yMd" textAlign="right"></e-column>
77
<e-column field='Freight' headerText='Freight' width='150' format='C2' textAlign="right"></e-column>
88
<e-column field='ShipName' headerText='Ship Name' width='300'></e-column>
9-
<e-column field='ShippedDate' headerText='Shipped Date' allowResizing ='false' width='200' format="yMd" textAlign="right"></e-column>
10-
<e-column field='ShipCountry' headerText='Ship Country' width='200'></e-column>
9+
<e-column field='ShippedDate' headerText='Shipped Date' [allowResizing] = 'false' width='200' format="yMd" textAlign="right"></e-column>
10+
<e-column field='ShipCountry' headerText='Ship Country' width='200'></e-column>
1111
<e-column field='ShipCity' headerText='Ship City' width='200'></e-column>
1212
</e-columns>
1313
</ej-grid>
1414
<div id="description">
15-
<p>The Grid columns can be resized by clicking and dragging at the right corner of columns header. To enable column resize behavior, set <code><a target="_blank" class="code"
15+
<p>The Grid columns can be resized by clicking and dragging at the right edge of columns header. To enable column resize behavior, set <code><a target="_blank" class="code"
1616
href="http://ej2.syncfusion.com/angular/documentation/grid/api-gridComponent.html#allowresizing-boolean">allowResizing
1717
</a></code> property as true. You can also prevent to resize the particular column by setting
1818
<code><a target="_blank" class="code"
1919
href="http://ej2.syncfusion.com/angular/documentation/grid/api-columnDirective.html#allowresizing-any">columns->allowResizing
2020
</a></code> as false in columns definition.
2121

22-
And, when double click at the right corner of column header, the respective column width will auto adjusted to its fit by <code><a target="_blank" class="code"
22+
And, when double click at the right edge of column header, the respective column width will auto adjusted to its fit by <code><a target="_blank" class="code"
2323
href="http://ej2.syncfusion.com/angular/documentation/grid/api-gridComponent.html#autofitcolumns">autoFitColumns
2424
</a></code> method.
2525

0 commit comments

Comments
 (0)