BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<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();
}
|