Im trying to use Kendoui Angular2 grid within component in Kendo dialog. When I try to pagging- click on pagging buttons, It doesnt work and Im "thrown" to home page. Does anyone know if this should work in some way?
code:
<kendo-dialog *ngIf="isHelloOpen ">
<kendo-dialog-titlebar title="hello" (click)="isHelloOpen = false">
<h2 class="modal-title" id="myModalLabel">hello</h2>
</kendo-dialog-titlebar>
<hello-component *ngIf="currentPage == 1></hello-component>
<kendo-dialog-actions class="modal-footer">
<button type="button" class="btn" (click)="isHelloOpen = false">hello</button>
</div>
</kendo-dialog-actions>
</kendo-dialog>
the grid is within <hello-component>
.
thanks,
It seems to work when tested locally. The Dialog will render custom component 'hello-grid':
Here is the template of the 'hello-grid' component:
Runnable plunker: http://plnkr.co/edit/RyxR8ts2CRy229RXjXzF?p=preview
The pager works just fine. Am I missing something?