Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
95
Fixed Headers Without Vertical Scroll Bar
posted

Hi,

I have infragistic grid with fixed column headers but currently it's displaying scroll bar with headers fixed at the top.

Is there any way to remove vertical scrollbar without hampering fixed header functionality.

Thanks

Parents
No Data
Reply
  • 17590
    Offline posted

    Hello Kashinath,

    Thank you for posting in our community.

    By design igGrid provides fixedHeaders property, which by default is set to true. This means that headers will be always fixes and only grid data is going to be scrollable.

    //Initialize
    $(".selector").igGrid({
        fixedHeaders : false
    });

    In case that Virtualization feature is enabled. fixedHeaders will always act as if it is true.

    Please let me know if I could be of any further assistance.

Children