Disabled input validation in dynamic form
问题 I have a dynamic form (made an example using angular.io dynamic form live example plunkr) and I want to disable an input of this form, to display it as a readonly information. So I decided to add disabled attribute to the question model: export class QuestionBase<T>{ value: T; key: string; label: string; required: boolean; order: number; controlType: string; disabled?:boolean; constructor(options: { value?: T, key?: string, label?: string, required?: boolean, order?: number, controlType?: