ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
Change appearance of Groupable Grid Columns headers
Title:
B
I
{code}
?
I have a Grid with many columns, some groupable and some not. I have to inform the user at a glance which are the columns that can be grouped and which are not, how do I do it? (The ideal would be to put an icon in the header)
Save Changes
Cancel
mtugnoli
asked at 18 Mar 2020
Answers
B
I
{code}
?
Groupable columns (td html element) will have the `awe-groupable` css class, you can see that using chrome dev tools for example. So you can use this class and using CSS you can change the appearance of these columns. for example add this to your `site.css` (which should be after AwesomeMvc.css) and groupable columns will have red color headers: .awe-groupable .awe-col { color: red; }
Save Changes
Cancel
Omu
answered at 18 Mar 2020
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