How to remove list item image and keep the header always visible
Posted: Tue Jun 03, 2014 10:36 am
by Constantinos Efthymiou
Hi, two questions:
- By default a list has a right arrow image on every item. How do I remove that image.
- I want the header to remain always visible. I have a page with a list and as the user scrolls down or up, I need the header to remain always visible. How can I do that?
Thanks.
How to remove list item image and keep the header always visible
Posted: Tue Jun 03, 2014 12:42 pm
by Evgene Karachevtsev
Hello Constantinos,
Please add property to your list component data-icon=none: http://devcenter.appery.io/documentat...
Add property data-tap-toggle=false to the header
How to remove list item image and keep the header always visible
Posted: Wed Jun 04, 2014 9:36 am
by Constantinos Efthymiou
How to remove list item image and keep the header always visible
Posted: Thu Jun 05, 2014 7:14 am
by Constantinos Efthymiou
Hi,
Adding property data-tap-toggle=false to the header did not work. However, adding property data-position=fixed did.
I want to add this property to the Data Filter of a List, so that it is always visible. How can I do this? Also, how can I style the Data Filter box and font?
How to remove list item image and keep the header always visible
Posted: Thu Jun 05, 2014 12:42 pm
by obullei
Hello!
You can just set fixed position either for header or footer: http://prntscr.com/3pv4ab
There is not simple way to make component be always visible.
However you can use css attribute that set fixed position for the component but other component could be covered by it: code var element = $("[name=mobilelist_16]").prev();
element.css({
position: 'fixed',
top: 100,
left: 10,
"z-index":1000
});/code