Hello everyone,
I'm using Kendo UI for Angular 2 and it's awesome, but I'm having a little issue. Trying to handle the dialog component I need to change its dimensions. Looking at the docs I saw its possible to use "width" and "height" properties. When I put those I received and error:
EXCEPTION: Uncaught (in promise): Error: Template parse errors:Can't bind to 'width' since it isn't a known property of 'kendo-dialog'.1. If 'kendo-dialog' is an Angular component and it has 'width' input, then verify that it is part of this module.2. If 'kendo-dialog' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message.
My Component
import { Component } from '@angular/core';@Component({ selector: 'dialog-edit-form', styles: [ "input, label { width: 100%; } label {font-size: bold; color: black;}" ], template: ` <kendo-dialog [width]="500"> </kendo-dialog> `})export class FormComponent {}
Thanks (: