Project

General

Profile

« Previous | Next » 

Revision 47340

Removed modal for loading in Search Pages and added an alert message (while loading all forms, inputs, buttons are disabled)

View differences:

advancedSearchForm.component.ts
9 9
@Component({
10 10
    selector: 'advanced-search-form',
11 11
    template: `
12
        <form class="">
12
        <form [class]="(isDisabled)?'uk-disabled':''">
13 13
        <table   >
14 14
            <tr *ngFor="let selectedField of selectedFields; let i = index" class="-row  ">
15 15
                    <td *ngIf ="i==0 " class="">Search for:</td>
......
72 72
  @Input() fieldIds:  string[];
73 73
  @Input() fieldIdsMap;
74 74
  @Input() selectedFields:AdvancedField[];
75
  @Input() isDisabled: boolean = false;
76

  
75 77
  @Output() queryChange  = new EventEmitter();
76 78
  newFieldId:string;
77 79
  newFieldName:string;

Also available in: Unified diff