Hi Laurens,Thanks for contacting Syncfusion support.From your given screenshot, we suspect you have enabled the editing in the Grid and this buttons are the popup of the edit confirmation dialog. So you need to refer the below popup css to your project to resolve this issue,
We must need to refer this css when we use Syncfusion popups control.If you want all the EJ2 controls css in single reference, then please use this cdn to achieve this,
Otherwise, you need to refer all the EJ2 controls css separately for which you want to use in your project like below list,If you still facing this same issue, please share your full Grid code for further assistance.Regards,J Mohammed Farook
<head>
...
<link rel='nofollow' href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" /> //use rel=’stylesheet’ alone in link tag
</head> |
/* You can add global styles to this file, and also import other style files */
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-calendars/styles/material.css';
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-angular-grids/styles/material.css'; |