http://appery.io/app/view/3aba3058-a6...=
Hi Bahar.
Please try this solution:
1 In link from "array" to "listItem" click "AddJS/EditJS" and fill it with following code: http://prntscr.com/3iqrrz/direct
pre
code
jQuery(element).addClass("yourListItem_id" + value.id);
/code
/pre
2 Create JS event handler for "success" event on your list service with following code:
pre
code
var listItemId = /yourListItem=([\?\#]+)/gi.exec(window.location.search)[1];
var activeItem = jQuery(".yourListItem_id_" + listItemId)
if(activeItem[0])
activeItem[0].scrollIntoView();
/code
/pre
That's all.
From this time you can use links like:
http://appery.io/app/view/3aba3058-a6...
where: "534c7e16e4b02ae4f9496fc1" - is id of your list item. Got from "_id" collection attribute.
Regards.