Having trouble getting help?
Contact Support
Contact Support
Hide spinner in Angular Progress button component
27 Apr 20241 minute to read
You can hide spinner in the ProgressButton by setting the e-hide-spinner
property to cssClass
.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { ProgressButtonModule } from '@syncfusion/ej2-angular-splitbuttons'
import { Component } from '@angular/core';
@Component({
imports: [
ProgressButtonModule
],
standalone: true,
selector: 'app-root',
template: `<div class="e-section-control">
<button ejs-progressbutton content='Progress' cssClass='e-hide-spinner' [enableProgress]='true'></button></div>`
})
export class AppComponent {
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));