I have the listitem in the screenshot below. The list is linked via list service to the DB. I need to make it interactive such that the user can delete the selected item by click on recycle bin. I do not want to use delete service as I do not want to delete records from the DB, rather, I want to update the item status (there is a column for that), and those items with status (deleted) will not appear in the App. Now I have problem with updating the status to (deleted). And hence I have a couple of questions as follows:
ol
liShould I make the list (or listItem) "linked) from the properties panel in order to enable the user to select items? I expect the user can select item (which will be highlighted ) and then click on the recycle bin to delete (by invoke update and then list services subsequently)/li
liIn case I need to make it (linked), a colored background appears which I do want not keep. I used the following CSS to make it transparent but it did not work (given "mobilelistitem_272" is the listItem's name. and "Inbox_list" is the list name):
preli[name="mobilelistitem_272"] {
background:transparent !important;
border:none!important;
-moz-box-shadow: none!important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}/pre
And I tried the following:
pre
li [name="Inbox_list"] {
background:transparent !important;
border:none!important;
-moz-box-shadow: none!important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}/pre
So, (if I need to make it linked), how to remove the green background appears behind the light green labels?
/li
liLastly, how to return the name of the selected value and its respective _id to LSV? I need the value so when the user clicks on recycle bin, the button will invoke update service and update that record status to (deleted)./li
/ol
Many thanks for your help and support