đź‘‹ Use this site to provide feedback and ideas for all Nintex Products. See our post on Nintex Community "Welcome to Nintex Ideas" for more details on Nintex Ideas, how an idea is handled by our product teams and more!
If you have questions about Nintex Ideas, please contact ideas@nintex.com
If you require support, please visit Nintex Customer Central
If you have a sales inquiry, please contact sales@nintex.com
I just realized setting the height of a multi-record list view reveals scroll bars after 10+ years with SmartForms! But yes, the scrolling affects the whole view, moving headers out of view.
For anyone interested, we're using the below javascript to resize and reveal scrollbars according to window height any list view with the Name property appended with "listresize". Kindly adjust for your needs!
<script>function listresize(){ $("div[name*='listresize']").find(".scroll-wrapper" ).css({ height: $(window).height() - 200, overflow: "scroll"}); }; window.addEventListener('resize', listresize);listresize();</script>