Hello ,
I trying to customize list view and that is my code
<div class="row" style="max-height: 30px;">
<div class="col-xs-12">
<div class="text-ellipsis">
<div class="list-row-id-area ">
<input class="list-delete" type="checkbox"
style="margin-right: 5px;">
<span class="avatar avatar-small">
<img src="{%= doc.image %}">
</span>
<span>{%= doc.title %}</span>
</div>
</div>
</div>
1 - I used input checkbox because your own list.get_checkbox(doc) does not work for me
is there any way to use this function instead of my solution ?
2 - How can I remove naming series from list ? as described in the following screenshot
so I want to remove #CAT00001 from list
PS for this field , in list view is unchecked …
Thanks