Can't bind to 'disabled' since it isn't a known property of 'div
platform-browser-dynamic.js:230 Uncaught Error: Template parse errors:
Can't bind to 'disabled' since it isn't a known property of 'div'
at TemplateParser.parse (compiler.js:24631)
at JitCompiler._parseTemplate (compiler.js:34442)
at JitCompiler._compileTemplate (compiler.js:34417)
at eval (compiler.js:34318)
at Set.forEach (<anonymous>)
at JitCompiler._compileComponents (compiler.js:34318)
Solution 1:
The div tag does not have a disabled attribute in DOM. Therefore, disabled attribute cannot be apply to the div tag.
Comments
Post a Comment