-1
Hello, I have a function that should be executed only by clicking the filter button, but the page already opens with the search, with the function executed. Onclick is already on the filter button.
Here is the function:
function LoadFiltro(buscanova){
var nr_cliente = $('select[name=nr_cliente]').val();
var nr_gc1 = $('select[name=nr_gc1]').val();
var nr_status = $('select[name=nr_status]').val();
var nr_empresa = $("select[name='nr_empresa']").val();
var nr_potencial_fechamento = $("select[name='nr_potencial_fechamento']").val();
var dt_previsao_fechamento1 = $("input[name='dt_fechamento_ini']").val();
var dt_previsao_fechamento2 = $("input[name='dt_fechamento_fim']").val();
$.post('../App_Cad/ControlPreVendas.php',
{action: 'load',
type: 'filtro_controle',
nr_cliente: nr_cliente,
nr_gc1: nr_gc1,
nr_status: nr_status,
nr_empresa: nr_empresa,
nr_potencial_fechamento: nr_potencial_fechamento,
dt_previsao_fechamento1: dt_previsao_fechamento1,
dt_previsao_fechamento2: dt_previsao_fechamento2,
buscanova: buscanova},
function(data){
$('#resp_filtro').html(data);
}
);
And here’s the button:
<input type="button" value="Filtrar" class="botao" onClick="LoadFiltro(true);"/>
I’m opening my body like this:
<body onLoad="LoadFiltro(false);">