Forum Discussion
Frode_Slettum
Oct 08, 2024Copper Contributor
Problems with custom forms and the new SharePoint list views
Microsoft is pushing the new look for SharePoint lists, and I have an example that seems to affect customs forms size / dimensions: As you can see, we need to scroll to see the entire windows....
Twilko1861
Copper Contributor
An update from Microsoft:
Current status: After the deployment of our targeted solution, we're validating with affected users to determine if impact has been remediated.
I just checked a couple of forms and the issue seems to have been fixed.
Looks like the CSS was updated so now the max width is set to 100% of the width of the viewport - 72px and not 100% of the height - 72px as it was previously.
.spItemCustomForm_87379c9a {
max-height: calc(100vh - 72px);
max-width: calc(100vw - 72px);
Tgarlish01
Oct 11, 2024Copper Contributor
Works for me as well!