Skip to content

Commit

Permalink
kendo hidden from example (closes #231)
Browse files Browse the repository at this point in the history
  • Loading branch information
udos86 committed Jan 3, 2017
1 parent 572cca2 commit d4b562b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion example/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="text-center">
<a routerLink="/example-bootstrap">Bootstrap UI</a>
<a routerLink="/example-foundation">Foundation UI</a>
<a routerLink="/example-material">Material UI</a>
<a routerLink="/example-kendo">Kendo UI</a>
<!--<a routerLink="/example-kendo">Kendo UI</a>-->
<a routerLink="/example-primeng">PrimeNG UI</a>
<a routerLink="/example-async">Async</a>

Expand Down
8 changes: 4 additions & 4 deletions example/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import { DynamicFormsCoreModule } from "@ng2-dynamic-forms/core";
import { DynamicFormsBasicUIModule } from "@ng2-dynamic-forms/ui-basic";
import { DynamicFormsBootstrapUIModule } from "@ng2-dynamic-forms/ui-bootstrap";
import { DynamicFormsFoundationUIModule } from "@ng2-dynamic-forms/ui-foundation";
import { DynamicFormsKendoUIModule } from "@ng2-dynamic-forms/ui-kendo";
//import { DynamicFormsKendoUIModule } from "@ng2-dynamic-forms/ui-kendo";
import { DynamicFormsMaterialUIModule } from "@ng2-dynamic-forms/ui-material";
import { DynamicFormsPrimeNGUIModule } from "@ng2-dynamic-forms/ui-primeng";

import { BasicExampleComponent } from "./basic/basic-example.component";
import { BootstrapExampleComponent } from "./bootstrap/bootstrap-example.component";
import { FoundationExampleComponent } from "./foundation/foundation-example.component";
import { KendoExampleComponent } from "./kendo/kendo-example.component";
//import { KendoExampleComponent } from "./kendo/kendo-example.component";
import { MaterialExampleComponent } from "./material/material-example.component";
import { PrimeNGExampleComponent } from "./primeng/primeng-example.component";

Expand All @@ -42,7 +42,7 @@ function testValidator(formControl: FormControl) {
DynamicFormsBasicUIModule,
DynamicFormsBootstrapUIModule,
DynamicFormsFoundationUIModule,
DynamicFormsKendoUIModule,
//DynamicFormsKendoUIModule,
DynamicFormsMaterialUIModule,
DynamicFormsPrimeNGUIModule,
MaterialModule.forRoot()
Expand All @@ -51,7 +51,7 @@ function testValidator(formControl: FormControl) {
BasicExampleComponent,
BootstrapExampleComponent,
FoundationExampleComponent,
KendoExampleComponent,
//KendoExampleComponent,
MaterialExampleComponent,
PrimeNGExampleComponent,
ValidationMessageComponent,
Expand Down
4 changes: 3 additions & 1 deletion example/app/app.routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { RouterModule, Route } from "@angular/router";
import { BasicExampleComponent } from "./basic/basic-example.component";
import { BootstrapExampleComponent } from "./bootstrap/bootstrap-example.component";
import { FoundationExampleComponent } from "./foundation/foundation-example.component";
import { KendoExampleComponent } from "./kendo/kendo-example.component";
//import { KendoExampleComponent } from "./kendo/kendo-example.component";
import { MaterialExampleComponent } from "./material/material-example.component";
import { PrimeNGExampleComponent } from "./primeng/primeng-example.component";
import { NgModule } from "@angular/core";
Expand Down Expand Up @@ -49,6 +49,7 @@ const APP_ROUTES: Array<Route> = [
bgColor: "#009688"
}
},
/*
{
path: "example-kendo",
component: KendoExampleComponent,
Expand All @@ -58,6 +59,7 @@ const APP_ROUTES: Array<Route> = [
bgColor: "#ff5747"
}
},
*/
{
path: "example-primeng",
component: PrimeNGExampleComponent,
Expand Down

0 comments on commit d4b562b

Please sign in to comment.