No show styles in my Button

Hello,
I am trying to configure a solution in Visual Studio 2017 MVC ASP.NET Core + Angular and include syncfusion. I used as an example 


VirtualGrid looks correct, I think ... But I can not see the buttons with the example styles …


Can you help me? I attach my test Project
(View page Products in the solution/Project) 

Attachment: School_d1e7f424.rar

1 Reply

SK Shanmugaraja K Syncfusion Team July 18, 2018 11:24 AM UTC

Hi Jesus, 
 
Thank you for contacting Syncfusion support. 
 
We would like to let you know that the ASP.Net core with Angular project process and render component into the browser based on the app.shared.module.ts file initially. So, we suggest you to import ButtonModule in the app.shared.module.ts file, Since the ProductsComponent is imported in the app.shared.module.ts file only. Please refer the below code example, 
 
app.shared.module.ts 
//.. 
import { ProductsComponent } from './components/products/products.component'; 
import { ButtonModule } from '@syncfusion/ej2-ng-buttons'; 
 
@NgModule({ 
    declarations: [ 
        AppComponent, 
        //.. 
        ProductsComponent 
    ], 
    imports: [ 
        CommonModule, 
        ButtonModule, 
        //.. 
        RouterModule.forRoot([ 
            { path: '', redirectTo: 'home', pathMatch: 'full' }, 
            //.. 
             
            { path: 'products', component: ProductsComponent } 
        ]) 
    ] 
}) 
export class AppModuleShared { 
} 
 
 
Also, you have rendered EJ2 button (products.component.html) like ‘<button ejs-button>’, we would like to let you know that Tag prefix for Angular components is changed from ‘ej’ to ‘ejs’ from version v16.1.24 only. Since, your sample created with the version 15.4.23. So, we suggest you to use like ‘<button ej-button>’ in your application. Please check the below release details. 
 
 
We have modified your sample with version v15.4.23 and the same can be downloaded from below link. 
 
 
Could you please check the above sample and get back to us if you need any further assistance on this? 
 
Regards, 
Shanmugaraja K 
 


Loader.
Up arrow icon