Hide an attribute just for the first line in a list view.

0
  So, i have this scenario. Where i have a calculation screen, this page contains a list view, each line represents an object that is created and showed in the list view. The issue is that i want to hide the dropdown (marked with the red circle), i mean, i want to hide the dropdown just for the first line.  and for the rest of the lines, this dropdown will be shown. The line 2,3,4,5…. etc. will have this dropdown.   Does anyone have an idea on how to do this? i would appreciate it very much.  
asked
1 answers
0

you could do it with css
make sure to target the first child of the <li>

it will still be there, just invisible for the user (so don't use this if it is a security risk)

 

https://www.w3schools.com/cssref/sel_firstchild.php

answered