Skip to Main Content
Nintex Ideas

đź‘‹ 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

Workspace K2
Categories SmartForms
Created by Yadnesh Pawar
Created on Dec 16, 2024

Freeze list view header

When there is big list, it would be helpful to see header when scrolling down. Property to freeze header in editable list and list view would be great

  • Attach files
  • Johnny Lok
    Nov 14, 2025

    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>