Constantinos Efthymiou
Posts: 0
Joined: Fri May 23, 2014 11:21 am

How to remove list item image and keep the header always visible

Hi, two questions:

  1. By default a list has a right arrow image on every item. How do I remove that image.
  2. 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.
Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

How to remove list item image and keep the header always visible

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

Constantinos Efthymiou
Posts: 0
Joined: Fri May 23, 2014 11:21 am

How to remove list item image and keep the header always visible

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?

obullei
Posts: 0
Joined: Thu Jun 05, 2014 12:17 am

How to remove list item image and keep the header always visible

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

Return to “Issues”