Backdrop disable the entire screen instead of just the div
Hi, The backdrop and the indicator are displaying on the entire screen instead of the just the div that include the [ngBusy] property. The div display a table and I want that the indicator apply just on this table - like the demo . But the backdrop and the indicator are displaying on the entire screen. The div:

Thanks, David
Here is the div for the table :

Hi! I'm also facing this issue. I'd like to block just part of my screen and not it entirely. How can I achieve that?
Thanks, Gustavo.
Hi, @DavidOs55 , @gustavofrancoporto , have you tried this? https://github.com/devyumao/angular2-busy#the-indicators-position-is-not-inside-the-ngbusy-container
Hi @devyumao. Yes I tried this but it didn`t work.
I am having same issue, and found following:
Following working (i.e. adding style to parent div tag work):
<div style="position: relative; left: 10px; top: 10px;"> <div [ngBusy]="busy"> .... </div> </div>
Following not working:
<div [ngBusy]="busy" style="position: relative; left: 10px; top: 10px;"> -- </div>
Sorry, I might have done something wrong. It's working when there is a parent div with position relative.
I can confirm that the parent trick is working, thanks!