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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -