Skip to content

Commit 21aa970

Browse files
author
pipeline
committed
bug(EJ2-5457): categories added for filtering
1 parent f02473d commit 21aa970

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/grid/grid.module.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ export const gridRouteConfig: Object[] = [
5151
{ 'path': ':theme/grid/default', component: DefaultComponent, 'name': 'Default Functionalities', order: '01', category: 'Grid' },
5252
{ 'path': ':theme/grid/gridlines', component: GridLinesComponent, 'name': 'Grid Lines', order: '01', category: 'Grid' },
5353
{ 'path': ':theme/grid/paging', component: PageComponent, name: 'Paging', order: '01', category: 'Grid' },
54-
{ 'path': ':theme/grid/filtering', component: FilterComponent, name: 'Filtering', order: '01', category: 'Grid' },
55-
{ 'path': ':theme/grid/filtermenu', component: FilteringMenuComponent, name: 'Filter Menu', order: '01', category: 'Grid' },
54+
{ 'path': ':theme/grid/filtering', component: FilterComponent, name: 'Filtering', order: '05', category: 'Filtering' },
55+
{ 'path': ':theme/grid/filtermenu', component: FilteringMenuComponent, name: 'Filter Menu', order: '05', category: 'Filtering' },
5656
{ 'path': ':theme/grid/grouping', component: GroupComponent, name: 'Grouping', order: '01', category: 'Grid' },
5757
{ 'path': ':theme/grid/sorting', component: SortComponent, name: 'Sorting', order: '01', category: 'Grid' },
58-
{ 'path': ':theme/grid/searching', component: SearchComponent, name: 'Searching', order: '01', category: 'Grid' },
58+
{ 'path': ':theme/grid/searching', component: SearchComponent, name: 'Searching', order: '05', category: 'Filtering' },
5959
{ 'path': ':theme/grid/masterdetail', component: MasterComponent, name: 'Master/Detail', order: '01', category: 'Grid' },
6060
{
6161
'path': ':theme/grid/draganddrop', component: DragAndDropComponent, name: 'Row Drag And Drop', order: '01', category: 'Grid',
@@ -73,11 +73,11 @@ export const gridRouteConfig: Object[] = [
7373
{ 'path': ':theme/grid/selectionapi', component: SelectionApiComponent, name: 'Selection API', order: '04', category: 'Selection' },
7474
{ 'path': ':theme/grid/checkboxselection', component: CheckboxSelectionComponent, name: 'Checkbox Selection', order: '04', category: 'Selection'},
7575
{
76-
'path': ':theme/grid/aggregatedefault', component: AggregateComponent, name: 'Default Aggregate', order: '05', category: 'Aggregate'
76+
'path': ':theme/grid/aggregatedefault', component: AggregateComponent, name: 'Default Aggregate', order: '06', category: 'Aggregate'
7777
},
7878
{
7979
'path': ':theme/grid/aggregategroup', component: AggregateGroupComponent,
80-
name: 'Group and Caption aggregate', order: '05', category: 'Aggregate'
80+
name: 'Group and Caption aggregate', order: '06', category: 'Aggregate'
8181
},
8282
{
8383
'path': ':theme/grid/columntemplate', component: ColumnTemplateComponent, name: 'Column Template', order: '03',
@@ -89,33 +89,33 @@ export const gridRouteConfig: Object[] = [
8989
category: 'Grid'
9090
},
9191
{ 'path': ':theme/grid/hierarchy', component: HierarchyComponent, name: 'Hierarchy Grid', order: '01', category: 'Grid' },
92-
{ 'path': ':theme/grid/scrolling', component: ScrollComponent, name: 'Default Scrolling', order: '06', category: 'Scrolling' },
92+
{ 'path': ':theme/grid/scrolling', component: ScrollComponent, name: 'Default Scrolling', order: '07', category: 'Scrolling' },
9393
{
94-
'path': ':theme/grid/virtualization', component: VirtualizationComponent, name: 'Virtual Scrolling', order: '06',
94+
'path': ':theme/grid/virtualization', component: VirtualizationComponent, name: 'Virtual Scrolling', order: '07',
9595
category: 'Scrolling'
9696
},
9797
{
98-
'path': ':theme/grid/normal-edit', component: NormalEditComponent, name: 'Inline Editing', order: '07',
98+
'path': ':theme/grid/normal-edit', component: NormalEditComponent, name: 'Inline Editing', order: '08',
9999
category: 'Editing'
100100
},
101101
{
102-
'path': ':theme/grid/dialog-editing', component: DialogEditComponent, name: 'Dialog Editing', order: '07',
102+
'path': ':theme/grid/dialog-editing', component: DialogEditComponent, name: 'Dialog Editing', order: '08',
103103
category: 'Editing'
104104
},
105105
{
106-
'path': ':theme/grid/batch-editing', component: BatchEditComponent, name: 'Batch Editing', order: '07',
106+
'path': ':theme/grid/batch-editing', component: BatchEditComponent, name: 'Batch Editing', order: '08',
107107
category: 'Editing'
108108
},
109109
{
110-
'path': ':theme/grid/command-column', component: CommandColumnComponent, name: 'Command Column', order: '07',
110+
'path': ':theme/grid/command-column', component: CommandColumnComponent, name: 'Command Column', order: '08',
111111
category: 'Editing'
112112
},
113113
{
114-
'path': ':theme/grid/exporting', component: ExportingComponent, name: 'Basic', order: '08',
114+
'path': ':theme/grid/exporting', component: ExportingComponent, name: 'Basic', order: '09',
115115
category: 'Exporting'
116116
},
117117
{
118-
'path': ':theme/grid/advance-exporting', component: AdvanceExportingComponent, name: 'Advance Exporting', order: '08',
118+
'path': ':theme/grid/advance-exporting', component: AdvanceExportingComponent, name: 'Advance Exporting', order: '09',
119119
category: 'Exporting'
120120
},
121121
{ 'path': ':theme/grid/clipboard', component: ClipboardComponent, name: 'Clipboard', order: '01', category: 'Grid' },

0 commit comments

Comments
 (0)