Can't bind to 'routerLink' since it isn't a known property of 'kendo-panelbar-item'
my angular2 version is 2.4.8,and the @progress/kendo-angular-layout version is 0.21.5,why?
It seems to be working in this example.
Usually this error means that the LayoutModule is not imported in the app module.
Can you provide a plnkr which demonstrates the error?
Seems like a duplicate of #54
@rusev I am sure that i imported the LayoutModule to the app module,because if i remove the [routerLink] attribute from kendo-panelbar-item ,it works
Please see the Routing demo for reference.
Looks like router-link became routerLink:
https://coursetro.com/posts/code/111/Using-the-Angular-5-Router-%28Tutorial
I solved the same issue by adding the RouterModule to the Module that contained the component.
@ORESoftware Good catch: Also note, for anyone coming across this thread, that it is case sensitive: So you would want to use [routerLink] rather than [routerlink]
Most helpful comment
I solved the same issue by adding the RouterModule to the Module that contained the component.