Skip to content

Commit d43e1df

Browse files
author
pipeline
committed
sample(EJ2-4954): Grid sample tag removed
1 parent 6b0f150 commit d43e1df

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/common/samplelist.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export let samplesList: any = [
3434
'name': 'LinearGauge', 'category': 'Datavisualization', 'order': '01', 'path': 'lineargauge', 'samples': lineargaugeAppRoutes, "type": "new"
3535
},
3636
{
37-
'name': 'Grid', 'category': 'Grids', 'order': '02', 'path': 'grid', 'samples': gridRouteConfig, 'type': 'update'
37+
'name': 'Grid', 'category': 'Grids', 'order': '02', 'path': 'grid', 'samples': gridRouteConfig
3838
},
3939
{
4040
'name': 'Form-Validator', 'category': 'Editors', 'order': '03', 'path': 'form-validator', 'samples': formValidatorAppRoutes

src/grid/grid.module.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { MultipleExportingComponent } from './multiple-exporting.component';
4141
export const gridRouteConfig: Object[] = [
4242
{ 'path': ':theme/grid/default', component: DefaultComponent, 'name': 'Default Functionalities', order: '01', category: 'Grid' },
4343
{ 'path': ':theme/grid/gridlines', component: GridLinesComponent, 'name': 'Grid Lines', order: '01', category: 'Grid' },
44-
{ 'path': ':theme/grid/paging', component: PageComponent, name: 'Paging', order: '01', category: 'Grid', type: 'update' },
44+
{ 'path': ':theme/grid/paging', component: PageComponent, name: 'Paging', order: '01', category: 'Grid' },
4545
{ 'path': ':theme/grid/filtering', component: FilterComponent, name: 'Filtering', order: '01', category: 'Grid' },
4646
{ 'path': ':theme/grid/grouping', component: GroupComponent, name: 'Grouping', order: '01', category: 'Grid' },
4747
{ 'path': ':theme/grid/sorting', component: SortComponent, name: 'Sorting', order: '01', category: 'Grid' },
@@ -57,8 +57,8 @@ export const gridRouteConfig: Object[] = [
5757
{ 'path': ':theme/grid/column/stackedheader', component: StackedHeaderComponent, name: 'Stacked Header', order: '03', category: 'Column' },
5858
{ 'path': ':theme/grid/column/autowrap', component: AutoWrapComponent, name: 'AutoWrap Column cells', order: '03', category: 'Column' },
5959
{ 'path': ':theme/grid/column/reorder', component: ReorderComponent, name: 'Reorder Columns', order: '03', category: 'Column' },
60-
{ 'path': ':theme/grid/column/columnchooser', component: ColumnChooserComponent, name: 'Column Chooser', order: '03', category: 'Column', type: 'new' },
61-
{ 'path': ':theme/grid/column/columnresizing', component: ColumnResizingComponent, name: 'Column Resizing', order: '03', category: 'Column', type: 'new' },
60+
{ 'path': ':theme/grid/column/columnchooser', component: ColumnChooserComponent, name: 'Column Chooser', order: '03', category: 'Column' },
61+
{ 'path': ':theme/grid/column/columnresizing', component: ColumnResizingComponent, name: 'Column Resizing', order: '03', category: 'Column' },
6262
{ 'path': ':theme/grid/selection', component: SelectionComponent, name: 'Default Selection', order: '04', category: 'Selection' },
6363
{ 'path': ':theme/grid/selectionapi', component: SelectionApiComponent, name: 'Selection API', order: '04', category: 'Selection' },
6464
{
@@ -85,24 +85,24 @@ export const gridRouteConfig: Object[] = [
8585
},
8686
{
8787
'path': ':theme/grid/normal-edit', component: NormalEditComponent, name: 'Inline Editing', order: '07',
88-
category: 'Editing', type: 'new'
88+
category: 'Editing'
8989
},
9090
{
9191
'path': ':theme/grid/dialog-editing', component: DialogEditComponent, name: 'Dialog Editing', order: '07',
92-
category: 'Editing', type: 'new'
92+
category: 'Editing'
9393
},
9494
{
9595
'path': ':theme/grid/batch-editing', component: BatchEditComponent, name: 'Batch Editing', order: '07',
96-
category: 'Editing', type: 'new'
96+
category: 'Editing'
9797
},
9898

9999
{
100100
'path': ':theme/grid/exporting', component: ExportingComponent, name: 'Basic', order: '08',
101-
category: 'Exporting', type: 'new'
101+
category: 'Exporting'
102102
},
103103
{
104104
'path': ':theme/grid/multiple-exporting', component: MultipleExportingComponent, name: 'Multiple Exporting', order: '08',
105-
category: 'Exporting', type: 'new'
105+
category: 'Exporting'
106106
},
107107
];
108108

0 commit comments

Comments
 (0)