Hi Alex,
Thanks for contacting Syncfusion Support.
We can remove the notification icon in the Batch Editing using the cssClass property of the Grid. Using this, you can customize the appearance of the Grid and override the other class properties as shown in the following code example.
Component
<ej-grid #grid cssClass="prevNotify" [allowPaging]="true">
. ..
. ..
</ej-grid>
Index.html
<style>
.e-grid.prevNotify .e-updatedtd:before {
display: none;
}
</style> |
Refer to the following API Reference.
We have prepared a sample demo that can be referred from the following jsPlayground.
Regards,
Seeni Sakthi Kumar S.