Is there a way to get only the data filter input in the list component to be fixed? I want the data filter input to stay in one place and the list items to scroll.
Code appreciated.
Thanks
V
Is there a way to get only the data filter input in the list component to be fixed? I want the data filter input to stay in one place and the list items to scroll.
Code appreciated.
Thanks
V
Hello,
To set component fixed, you should add following CSS:
.ScreenName_componentName{
position:fixed;
}
where ScreenName and componentName are names of corresponding page and component.
Hi,
Yes, but the data filter is connected to the list item. What would be the componentName for the data filter ONLY?
Victor
Thank you for update!