Skip to content

Commit 47e7e83

Browse files
author
pipeline
committed
sample(EJ2-5119): column menu sample action desc added.
1 parent 4458cc4 commit 47e7e83

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed
Binary file not shown.
50 Bytes
Binary file not shown.

samples/grid/columnmenu/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class ColumnMenuSample extends SampleBase<{}, {}> {
1919
<ColumnDirective field='CustomerName' headerText='Customer Name' width='200' ></ColumnDirective>
2020
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='200' format='yMd' textAlign='right' />
2121
<ColumnDirective field='Freight' headerText='Freight' width='150' format='C2' textAlign='right' />
22-
<ColumnDirective field='ShipName' headerText='Ship Name' width='200'></ColumnDirective>
22+
<ColumnDirective field='ShipName' headerText='Ship Name' visible={false} width='200'></ColumnDirective>
2323
<ColumnDirective field='ShipCountry' headerText='Ship Country' width='200'></ColumnDirective>
2424
</ColumnsDirective>
2525
<Inject services={[Resize, Group, Sort, ColumnMenu, Filter, Page]} />

src/grid/columnmenu.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,17 @@ export class ColumnMenuSample extends SampleBase<{}, {}> {
1919
<ColumnDirective field='CustomerName' headerText='Customer Name' width='200' ></ColumnDirective>
2020
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='200' format='yMd' textAlign='right' />
2121
<ColumnDirective field='Freight' headerText='Freight' width='150' format='C2' textAlign='right' />
22-
<ColumnDirective field='ShipName' headerText='Ship Name' width='200'></ColumnDirective>
22+
<ColumnDirective field='ShipName' headerText='Ship Name' visible={false} width='200'></ColumnDirective>
2323
<ColumnDirective field='ShipCountry' headerText='Ship Country' width='200'></ColumnDirective>
2424
</ColumnsDirective>
2525
<Inject services={[Resize, Group, Sort, ColumnMenu, Filter, Page]} />
2626
</GridComponent>
2727
</div>
28+
<div id="action-description">
29+
<p>This sample demonstrates the column menu feature. Click the multiple icon of each column to
30+
show the column menu.
31+
</p>
32+
</div>
2833
<div id="description">
2934
<p>
3035
Grid has option to show column menu when click on multiple icon of each column. The column menu has integrated options to

0 commit comments

Comments
 (0)