Replies: 1 comment 2 replies
-
Hello @OrigamiPT , You can try the following approach:
<igx-hierarchical-grid>
<igx-row-island (gridCreated)="onGridCreated($event)"></igx-row-island>
</igx-hierarchical-grid> onGridCreated($event: IGridCreatedEventArgs) {
if (!$event.grid.data || $event.grid.data.length === 0) {
$event.grid.nativeElement.style.display = "none";
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, is there any way to hide an island in a record if the island has no data?

what i want to avoid is to have a grid there where there is no data to show
Beta Was this translation helpful? Give feedback.
All reactions