Posts by Enos Silva • 9 points
3 posts
-
0
votes4
answers993
viewsA: How to pass/receive data to components via routing
The way our friend Edward showed is with parameters on the route, you can also pass query parameters which I believe is the way you want to get. By your example it was not clear at which moment you…
-
-1
votes1
answer23
viewsA: How to perform a template function on the <Kendo-tabstrip-tab> component
Hello, This component you are using has a method that takes the click, looking at the documentation I believe is (tabSelect), you can replace the function of (click) by this function (tabSelect),…
-
1
votes1
answer3148
viewsA: How to use components exported from other modules at Angular 2
You need to create an intermediate module, because the app.module that had index.module imported cannot view the components exported by index.module. In order for the app.module to be able to view…