Hi Vijay,
Greetings from
Syncfusion support.
Based on your query,
you want to change the opacity of the filter popup so that you will be able to
see the data behind the filter popup. Your requirement can be achieved by using
the css in the actionComplete event of the EJ2 Grid.
Refer the below code example:
public actionComplete(args) {
if (args.requestType == 'filterafteropen') {
args.filterModel.dlgDiv.style.opacity = 0.6;
args.filterModel.dlgDiv.querySelector('.e-dlg-content').style.background =
'red';
args.filterModel.dlgDiv.querySelector(
'.e-footer-content'
).style.background = 'red';
}
}
|
Sample: https://stackblitz.com/edit/angular-rb8bch?file=src%2Fapp.component.html,src%2Fapp.component.ts
Regards,
Joseph I.