Page 1 of 1

fixed data filter in list

Posted: Tue Mar 18, 2014 11:11 am
by Victor Fagerström

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


fixed data filter in list

Posted: Tue Mar 18, 2014 12:43 pm
by Nikita

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.


fixed data filter in list

Posted: Tue Mar 18, 2014 6:54 pm
by Victor Fagerström

Hi,

Yes, but the data filter is connected to the list item. What would be the componentName for the data filter ONLY?

Victor


fixed data filter in list

Posted: Tue Mar 18, 2014 8:31 pm
by Victor Fagerström

Never mind, found answer here:

http://stackoverflow.com/questions/12...

V


fixed data filter in list

Posted: Tue Mar 18, 2014 9:02 pm
by Maryna Brodina

Thank you for update!