How do you enable Non Scrolling Columns in the igHierarchicalGrid? What is that feature called?
Hello Jason,
Thank you for posting in our community.
I believe the fixedHeaders option is what you are looking for. Headers will be fixed is this option is set to true and only the grid data will be scrollable. It could be set as following:
//Initialize $(".selector").igHierarchicalGrid({ fixedHeaders : true })}
//Initialize
$(
".selector"
).igHierarchicalGrid({
fixedHeaders :
true
})}
I hope this will help you achieve your requirement.
Please let me know if you have any additional questions regarding this matter.
Just to be clear, my goal is to be able to scroll down in my grid with the column headers still at the top of the grid as if I'm still looking at the first record, no matter how far I scroll.