summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp-cell-editor/rdp-input-editor/rdp-input-editor.component.ts
blob: 31c9e9d768b0ce67ca96053f46c64304c57236cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';

@Component({
  selector: 'rdp-input-editor',
  styleUrls: ['./rdp-input-editor.component.scss'],
  template: `
      <input class="input-editor" [disabled]="isColumnDisabled"  
      [(ngModel)]="columnValue" 
      type="text" name="{{columntitle}}"  
      id="{{columntitle}}"
      (change)="detectChange(columnValue)">
  `
})
export class RdpInputEditorComponent implements OnInit {

  @Input() rowdata: any;
  @Input() columntitle: any
  @Input() disabled: boolean;

  @Output() changedColumnValue = new EventEmitter<any>();

  columnValue: any;
  isColumnDisabled:boolean;

  constructor() { }

  ngOnInit() {
    if (this.rowdata != null || this.rowdata != undefined) {
      let rowObj = JSON.parse(this.rowdata);
      let column = this.columntitle;
      this.columnValue = rowObj[column];
    } else {
      this.columnValue = null;
    }
    this.isColumnDisabled = this.disabled;
  }

  detectChange(changedValue) {
    this.changedColumnValue.emit(changedValue);
  }

}