I want to add some custom context menu items to DataGrid.
I followed this docs: https://blazor.syncfusion.com/documentation/datagrid/context-menu/#custom-context-menu-items
What are the possible values for Target property?
new ContextMenuItemModel { Text = "Copy with headers", Target = ".e-content", Id = "copywithheader" }
I have tried .e-grid for example, but it does not work, so obviously it's not just any CSS selector.