Hi,
I have a RadGrid (version Q1 2012) in which I hide some items in the headercontextmenu :
The items are hidden except for the separators I want to hide. The result I see is four separators in stead of one.
How can I hide these separators?
Paul
I have a RadGrid (version Q1 2012) in which I hide some items in the headercontextmenu :
protected void HeaderContextMenu_ItemCreated(object sender, RadMenuEventArgs e) { switch (e.Item.Value) { case "GroupBy": case "UnGroupBy": case "bottomGroupSeperator": case "BestFit": case "bestFitSeparator": case "ColumnsContainer": case "filterMenuSeparator": e.Item.Attributes.Add("style", "display: none"); break; default: break; } }The items are hidden except for the separators I want to hide. The result I see is four separators in stead of one.
How can I hide these separators?
Paul