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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -