-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #877 from IgniteUI/nrobakova/treeGrid-bundle
added treeGrid bundle
- Loading branch information
Showing
7 changed files
with
121 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { NgModule } from "@angular/core"; | ||
import { RouterModule, Routes } from "@angular/router"; | ||
import { | ||
TreeGridBatchEditingSampleComponent | ||
} from "./tree-grid-batch-editing/tree-grid-batch-editing-sample.component"; | ||
import { | ||
TreeGridChilddatakeySampleComponent | ||
} from "./tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component"; | ||
import { TreeGridFinJSComponent } from "./tree-grid-finjs/tree-grid-finjs-sample.component"; | ||
import { | ||
TreeGridPrimaryforeignkeySampleComponent | ||
} from "./tree-grid-primaryforeignkey-sample/tree-grid-primaryforeignkey-sample.component"; | ||
import { TreeGridRowEditSampleComponent } from "./tree-grid-row-edit/tree-grid-row-editing-sample.component"; | ||
|
||
export const treeGridRoutes: Routes = [ | ||
{ | ||
component: TreeGridChilddatakeySampleComponent, | ||
data: { displayName: "TreeGrid ChildDataKey", parentName: "TreeGrid" }, | ||
path: "treegrid-childdatakey" | ||
}, | ||
{ | ||
component: TreeGridPrimaryforeignkeySampleComponent, | ||
data: { displayName: "TreeGrid Primary/Foreign key", parentName: "TreeGrid" }, | ||
path: "treegrid-primaryforeignkey" | ||
}, | ||
{ | ||
component: TreeGridRowEditSampleComponent, | ||
data: { displayName: "TreeGrid Row Editing", parentName: "TreeGrid" }, | ||
path: "treegrid-row-edit" | ||
}, | ||
{ | ||
component: TreeGridFinJSComponent, | ||
data: { displayName: "TreeGrid Finance demo sample", parentName: "TreeGrid" }, | ||
path: "treegrid-finjs-sample" | ||
}, | ||
{ | ||
component: TreeGridBatchEditingSampleComponent, | ||
data: { displayName: "TreeGrid Batch Editing", parentName: "TreeGrid" }, | ||
path: "treegrid-batchediting" | ||
} | ||
]; | ||
|
||
@NgModule({ | ||
exports: [ | ||
RouterModule | ||
], | ||
imports: [ | ||
RouterModule.forChild(treeGridRoutes) | ||
] | ||
}) | ||
export class TreeGridRoutingModule { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { CommonModule } from "@angular/common"; | ||
import { NgModule } from "@angular/core"; | ||
import { FormsModule } from "@angular/forms"; | ||
import { | ||
IgxButtonGroupModule, | ||
IgxButtonModule, | ||
IgxDialogModule, | ||
IgxGridModule, | ||
IgxIconModule, | ||
IgxRippleModule, | ||
IgxSliderModule, | ||
IgxSwitchModule, | ||
IgxToggleModule, | ||
IgxTreeGridModule | ||
} from "igniteui-angular"; | ||
import { | ||
TreeGridBatchEditingSampleComponent | ||
} from "./tree-grid-batch-editing/tree-grid-batch-editing-sample.component"; | ||
import { | ||
TreeGridChilddatakeySampleComponent | ||
} from "./tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component"; | ||
import { TreeGridFinJSComponent } from "./tree-grid-finjs/tree-grid-finjs-sample.component"; | ||
import { | ||
TreeGridPrimaryforeignkeySampleComponent | ||
} from "./tree-grid-primaryforeignkey-sample/tree-grid-primaryforeignkey-sample.component"; | ||
import { TreeGridRoutingModule } from "./tree-grid-routing.module"; | ||
import { TreeGridRowEditSampleComponent } from "./tree-grid-row-edit/tree-grid-row-editing-sample.component"; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
TreeGridChilddatakeySampleComponent, | ||
TreeGridPrimaryforeignkeySampleComponent, | ||
TreeGridRowEditSampleComponent, | ||
TreeGridBatchEditingSampleComponent, | ||
TreeGridFinJSComponent | ||
], | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
TreeGridRoutingModule, | ||
IgxTreeGridModule, | ||
IgxGridModule, | ||
IgxButtonGroupModule, | ||
IgxIconModule, | ||
IgxSliderModule, | ||
IgxToggleModule, | ||
IgxButtonModule, | ||
IgxSwitchModule, | ||
IgxRippleModule, | ||
IgxDialogModule | ||
] | ||
}) | ||
export class TreeGridModule { } |