hello there. I would like to suggest an enhancement for list methods. the ability to easily do two new things.
1) be able to add/change the background color to the list headers to make them look more obvious to users.
2) the ability in widescreen to lock the list header in place. this need not be a default item, I think can be accomplished with a "lock header' check box. That way if you have a large list you don't forget the column names you're looking at as you scroll up.
Many thanks for your consideration.
list header enhancement request
-
- Posts: 47
- Joined: September 7th, 2021, 1:04 pm
- Contact:
-
- Posts: 329
- Joined: August 26th, 2021, 9:18 am
- Contact:
Re: list header enhancement request
All new MVC apps will start to get created with the following css file.
If you have not made any changes to the style.css file you can upload this file.
Under Development there is a Static Files link. Have Web selected in the Save To drop down. Then click on the link for the css folder. Then you can drag the style.css file in to the File Upload box then once it finishes uploading click refresh. These steps will need to be repeated for each environment. (DV/QA/PD)
If you have made changes to the style.css file you will want to edit your existing one instead of completely overwriting. Make the following changes:
Add:
Update:
For current MVC Apps:If you have not made any changes to the style.css file you can upload this file.
Under Development there is a Static Files link. Have Web selected in the Save To drop down. Then click on the link for the css folder. Then you can drag the style.css file in to the File Upload box then once it finishes uploading click refresh. These steps will need to be repeated for each environment. (DV/QA/PD)
If you have made changes to the style.css file you will want to edit your existing one instead of completely overwriting. Make the following changes:
Add:
Code: Select all
.ListHeaderRow > td {
position: sticky;
top: 0;
background-color: #fff !important;
font-size: 20px;
z-index: 99;
font-weight: bold;
overflow-x: unset;
}
.table-responsive {
overflow-x: unset;
}
.sticky-top {
position: unset;
}
Code: Select all
.container {
max-width: 95vw;
/*overflow: auto;*/
}
word count: 254