Hi Manolo,
Greeting from Syncfusion.
Query: I want show the grid spinner, but when I use the showSpinner() grid's function, I get an error
We have checked the provided sample and by default, we have create the spinner while rendering the grid component. But you are tried to show the spinner in ngAfterViewInit event(before Spinner component creation) so that it cause the reported problem.
If you want to show the custom spinner in grid then refer the below code example and documentation.
<ejs-grid #grid [dataSource]='data' (created)='created($event)' height='400' width='100%'>
. . . . .
</ejs-grid>
|
import { setSpinner } from '@syncfusion/ej2-popups';
setSpinner({ template: '<div class="loader-centerd-screen"><div></div></div>' });
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
created(){
this.grid.showSpinner();
}
|
If we misunderstood your query then share more details regarding your requirement it will helpful for us to validate further.
Regards,
Hariharan