no message

This commit is contained in:
Diamantis Tziotzios 2017-12-06 14:44:40 +02:00
parent 07a4433f34
commit a7b2188a90
4 changed files with 6 additions and 7 deletions

View File

@ -96,7 +96,7 @@ import { ProjectDetailedComponent } from './viewers/project-detailed/project-det
import {ProgressBarModule} from 'primeng/primeng';
import {StepsModule,MenuItem} from 'primeng/primeng';
import {SidebarModule as NgSidebarModule} from 'primeng/primeng';
import {CheckboxModule} from 'primeng/primeng';
@NgModule({
declarations: [
@ -155,7 +155,7 @@ import {SidebarModule as NgSidebarModule} from 'primeng/primeng';
BrowserAnimationsModule,
SidebarModule.forRoot(),
StepsModule,
NgSidebarModule
CheckboxModule
],
providers: [{
provide: HTTP_INTERCEPTORS,

View File

@ -1,4 +1,3 @@
<div [formGroup]="form" class="form-group">
<input id="{{field.id + 'checkboc'}}" class="checkbox-icon" formControlName="value" type="checkbox">
<label for="{{field.id + 'checkboc'}}" class="checkbox-label">Test</label>
<p-checkbox [formControl]="form" label="Test"></p-checkbox>
</div>

View File

@ -1,5 +1,5 @@
<div [formGroup]="form">
<select class="form-control" formControlName="value">
<option *ngFor="let opt of field.data.options" [value]="opt.value">{{opt.label}}</option>
<select class="form-control" formControlName="value">
<option *ngFor="let opt of field.data.options" [value]="opt.value">{{opt.label}}</option>
</select>
</div>

View File

@ -18,7 +18,7 @@ export class RestBase {
protocol: string = "http";
hostname: string ="localhost"
hostname: string ="192.168.32.103"
port: number = 8080;
webappname: string = "dmp-backend";