import { Component, OnInit, Input } from '@angular/core'; @Component({ selector: 'rdp-datepicker-editor', styleUrls: ['./rdp-datepicker-editor.component.scss'], template:` ` }) export class RdpDatepickerEditorComponent implements OnInit { @Input() rowdata :any; @Input() columntitle: any columnValue: any; constructor() { } ngOnInit() { console.log("RdpDatepickerEditorComponent Row Data ::: ",this.rowdata); let rowObj = JSON.parse(this.rowdata); let column = this.columntitle; this.columnValue = rowObj[column]; } }