Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Error: "Bootstrap call not found" appears when installing for Angular in a newer setup that's using main.ts instead of app.module.ts. Which is quite common in Angular 15/16+ setups.

A temporary work-around is to replace main.ts and app.module.ts with bare minimum.

src/main.ts

```
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';


import { AppModule } from './app/app.module';

platformBrowserDynamic().bootstrapModule(AppModule)
  .catch(err => console.error(err));
```
and 
app/app.module.ts
```
import {NgModule} from '@angular/core';


@NgModule({
  declarations: [
  ],
  imports: [
  ],
  providers: [
  ],
  bootstrap: []
})
export class AppModule { }
```
Run "ng add @syncfusion/ej2-angular-grids" and again and manually move the generated changes back to the original main.ts file.