Hello, I am using the Grouping Dropdown, I need to add a separator line after each dropdown item group by overriding CSS.
Hi @Prathiikk,
Looking at the first grouping demo you can edit the style attribute to include a border:
void ItemRender(DropDownItemRenderEventArgs<int?> args)
{
...
args.Attributes.Add("style", "opacity: 1; border-bottom: var(--rz-border-base);");
...
}