Criei um botão ajax numa barra de ação.
Tenho 2 questões:
- O ícone aparece e ao clicar nele recebe a mensagem de sucesso com o botão ok, só que o código não executa.
if (sc_actionbar_clicked_state() == “state1”) {
$message = “Lançamento”;
sc_ajax_message ($message,‘APROVADO’, ‘modal=Ybutton=Y&button_label=OK&type success’);
$update_table = ‘LANCA’; // Table name
$update Where = “CODIGO_LANCA = ‘{LANCA.CODIGO_LANCA}’”; // Where clause
$update Fields = array( // Field list, add as many as needed
“ENVIADO = ‘2’”, // lançamento aprovado
);
// Update record
$update_sql = ‘UPDATE ’ . $update_table
. ’ SET ’ . implode(’, ', $update Fields)
. ’ WHERE ’ . $update Where;
sc_exec_sql($update_sql);
sc_commit_trans();
}
- Se antes de clicar no botão criado eu faço uma busca rápida com um filtro ao clicar no botão ele descofigura totalmente