Hi Alex,
On Page Load run:preAppery("mobilelist").find("li").off().on("click", function(e){
localStorage.setItem("myParam", $(this).text().replace(/[\n\r]/gi, "").replace(/\s+$/gi,"").replace(/\s+/gi,""));
restservice1.execute();
});/preWhere 'mobilelist' is your list name,
'restservice1' is a service name,
'myParam' is a name of localStorage variable that will be passed to service.
On service mapping, add the following code to parameter 'where':prereturn '{"nombre":{"' + localStorage.getItem("myParam") + '"}';/pre