I have a system that has a web version, you can see it here: All in Your Hands . In it you will notice that there is a carousel for displaying more accessed content and in this carusel js used to open a modal bootstrap in the case of some content such as music and videos. The javascript function that is called to open the modal is this below:
function recommendedContentsDialodShow(){
$('#recommendedContentsModal').on('hidden.bs.modal', function() {
}).modal('show');
}
The problem is that I can not open the modal and display data on it using EL (ex: ${nomeMusica}
) without making a request and reloading the entire page. How could I do this without making a request by setting these parameters in the request scope?
I have already tried features like c: set but it did not work ...