I have two List and Filter screens, both are redirected to a third screen called View
List View button List :
//ABRE TELA VISUALIZAR
$(document).on('click', '.visualizar', function(e) {
e.preventDefault;
var pClienteID = $(this).attr("data-id");
window.location.href = "/Administrativo/Cliente/Visualizar?pClienteID=" + parseInt(pClienteID);
});
//FIM
Screen Preview button Filter :
//ABRE TELA VISUALIZAR
$(document).on('click', '.visualizar', function(e) {
e.preventDefault;
var pClienteID = $(this).attr("data-id");
window.location.href = "/Administrativo/Cliente/Visualizar?pClienteID=" + parseInt(pClienteID);
});
//FIM
Doubt: How do I implement the Back button on the View screen?