Bootstrap Popover triggered from button in Kendo UI for Angular Grid header -
i'm trying add button kendo ui angular grid header cells, should open popovers. works, popovers stay "inside" header cell.
i'm using simple button:
<ng-template kendogridheadertemplate let-column> {{column.title}} <button class="k-button" [ngbpopover]="filterpopup" popovertitle="fancy title" placement="bottom">i</button> </ng-template>
and template popupver content:
<ng-template #filterpopup> test! </ng-template>
i guess there css "catching" content inside <th>
node generated kendo ui grid, cannot find out how "free" popover.
any appreciated.
Comments
Post a Comment