ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
How to suppress grid group header?
Title:
B
I
{code}
?
Everything I need is in the group footer, so I don't need a header. Neither trick below works - they both throw exceptions. private GroupHeader makeDowntimeDetailHeader(GroupInfo<DowntimeIncident> info) { var groupHeader = new GroupHeader {Content = ""}; return groupHeader; } or private GroupHeader makeDowntimeDetailHeader(GroupInfo<DowntimeIncident> info) { return null; }
Save Changes
Cancel
thalter
asked at 08 Mar 2022
you can't have a grid group without the header, you could use this css if you insist: `.awe-ghead { display: none; }` but it will probably be just confusing for the user
at 08 Mar 2022
Omu
Answers
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK