Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

xdxddxd

Mudar de "OK" Para "Home" e "Cancelar" para "Estoque"

Recommended Posts

ao clicar em um botão eu gostaria de exibir um confirm no site, mas eu gostaria de Mudar de "OK" Para "Home" e "Cancelar" para "Estoque".

isso usando javascript puro, alguem pode me ajudar ?

já agradeço de já.

tem que usar algum plugin no site ou tem como fazer puro mesmo.

se quiser deixar só um link com o tutorial eu já agradeço, porém não achei nenhum do jeito que eu quero no google.

Compartilhar este post


Link para o post
Compartilhar em outros sites

com javascript puro não é possível.

 

plugins existem vários:

https://craftpip.github.io/jquery-confirm/

Compartilhar este post


Link para o post
Compartilhar em outros sites

@xdxddxd

 

É possível sim, segue o código:

 

<script>
function Redirect1(){
    if (document.getElementById('redirect1').value == "Ok"){
        document.getElementById('redirect1').value = "Home";
        document.getElementById('redirect1').disabled = ""
    } else {
	    if (document.getElementById('redirect1').value == "Home"){
            document.getElementById('redirect1').value = "Ok";
            document.getElementById('redirect1').disabled = ""
	    }
	}
}

function Redirect2(){
    if (document.getElementById('redirect2').value == "Cancel"){
        document.getElementById('redirect2').value = "Estoque";
        document.getElementById('redirect2').disabled = ""
    } else {
	    if (document.getElementById('redirect2').value == "Estoque"){
            document.getElementById('redirect2').value = "Cancel";
            document.getElementById('redirect2').disabled = ""
	    }
	}
}
</script>
<button onclick="Redirect1()">Check Button 1</button>
<input type="submit" id="redirect1" value="Ok" disabled>
<button onclick="Redirect2()">Check Button 2</button>
<input type="submit" id="redirect2" value="Cancel" disabled>

 

Agora se você quer que cada BOTÃO tenha uma FUNÇÃO diferente, exemplo, ao clicar no botão OK ele CONFIRME e no HOME ele redirecione para a página inicial, ai o que eu recomendo você a fazer é o seguinte.

 

Criar 4 FORMULÁRIOS 1 com o STYLE VISIBLE e os outros 3 HIDDEN ai conforme você clica no botão para validar uma ação que eu não sei qual é a regra do seu negócio, você apenas muda de HIDDEN para VISIBLE o formulário com a ação que você quer e coloca os outros 3 como HIDDEN e ai para o usuário cada botão tem uma chamada no ACTION diferente, podendo ser redirecionado para qualquer lugar para os seus 4 botões.

 

Espero ter ajudado.

 

Att.

Felipe Coutinho

Compartilhar este post


Link para o post
Compartilhar em outros sites

@xdxddxd

 

Seguindo um pouco a lógica do que eu falei, segue um código exemplo que fiz para demonstrar como exibir e esconder os formulários, basta você ir adaptando a sua necessidade e regra de negócio.

 

<!DOCTYPE HTML>
<html>
    <head>
    <!-- Meta -->
        <meta charset="UTF-8">
        <meta name="author" content="Felipe Guedes Coutinho Hashimoto">
        <meta name="description" content="Habilitando e Desabilitando Formulários">
        <meta name="keywords" content="Habilita Desabilita Formulário">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <style>
            #customers {
                font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
                border-collapse: collapse;
                width: 100%;
            }
            #customers td, #customers th {
			    background-color: #FAFAFA;
                border: 1px solid #ddd;
                padding: 8px;
            }
			#customers td:hover {
                background-color: #f5f5f5;
            }
            .shadow-1, button, .container {
                box-shadow: 0 1px 3px rgba(0, 0, 255, 0.12), 0 1px 2px rgba(0, 0, 255, 0.24);
            }
            .shadow-2, button:hover, .context_menu_pai, .box_login, .datepicker.dropdown-menu, .dialogbox, .overflow-menu ul {
                box-shadow: 0 2px 5px 0 rgba(0, 0, 255, 0.16), 0 2px 10px 0 rgba(0, 0, 255, 0.12);
            }
            .transition-1, button {
                transition: all .3s ease-out;
                transition-property: all;
                transition-duration: .3s;
                transition-timing-function: ease-out;
            }
            button {
                background-color: #FFFFFF;
                text-align: center
                border: 0;
                padding: 0px;
                width: 70px;
                height: 20px;
                display: inline-block;
                margin: 5px;
                cursor: pointer;
                border-radius: 4px;
            }
            input[type="text"], input[type="password"], input[type="search"] {
                box-shadow: 0 0 0 0;
                border: 0 none;
                outline: 0;
                border-radius: 5px;
                padding: 1px 8px;
                background-color: white;
                color: silver;
            }            
            input[type="text"]:focus, input[type="password"]:focus, input[type="search"]:focus {
                box-shadow: none;
                border: 1px solid;
                border-color: #97B0E6;
            }
		</style>
        <script type="text/javascript">
            function habilitar(e){
                if (e.value == "HabilitaOk"){
                    document.getElementById('div_form_Ok').style.display = "block";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaHome"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "block";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaEstoque"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "block";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaCancel"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "block";
                }
            }
        </script>
    </head>	
	<body>
        <table border="0" id="customers">
		<tr>
		<td align="center"><button onClick="habilitar(this)" id="btn_ok"      value="HabilitaOk"      style="display:block">OK      </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_home"    value="HabilitaHome"    style="display:block">Home    </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_estoque" value="HabilitaEstoque" style="display:block">Estoque </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_cancel"  value="HabilitaCancel"  style="display:block">Cancel  </button></td>
		</tr>
		</table>
		<br />
		<div id="div_form_Ok" style="display:block">
			<form method="post" action="incluir.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Informações para incluir</td></tr>
			<tr><td align="right">Nome:  </td><td><input type="search"   id="Nome"  placeholder="Digite seu nome."  size="50" required autofocus /> </td></tr>
			<tr><td align="right">Senha: </td><td><input type="password" id="Senha" placeholder="Digite sua senha." size="50" required />           </td></tr>
			<tr><td colspan="2" align="center"><input type="submit" value="Ok"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Home" style="display:none">
			<form method="post" action="index.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Redirecionar para Home</td></tr>
			<tr><td align="center"><input type="submit" value="Home"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Estoque" style="display:none">
			<form method="post" action="estoque.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Verificar Estoque</td></tr>
			<tr><td align="center"><input type="submit" value="Estoque"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Cancel" style="display:none">
			<form method="post" action="logout.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Logout</td></tr>
			<tr><td align="center"><input type="submit" value="Cancel"/></td></tr>
			</table>
			</form>
		</div>
	</body>	
</html>

 

Aqui tem outro exemplo: Exibir Formulário Oculto com Botão.

 

Espero ter ajudado.

 

Att.

Felipe Coutinho

Compartilhar este post


Link para o post
Compartilhar em outros sites
On 10/22/2019 at 11:23 AM, Felipe Guedes Coutinho said:

@xdxddxd

 

Seguindo um pouco a lógica do que eu falei, segue um código exemplo que fiz para demonstrar como exibir e esconder os formulários, basta você ir adaptando a sua necessidade e regra de negócio.

 


<!DOCTYPE HTML>
<html>
    <head>
    <!-- Meta -->
        <meta charset="UTF-8">
        <meta name="author" content="Felipe Guedes Coutinho Hashimoto">
        <meta name="description" content="Habilitando e Desabilitando Formulários">
        <meta name="keywords" content="Habilita Desabilita Formulário">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <style>
            #customers {
                font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
                border-collapse: collapse;
                width: 100%;
            }
            #customers td, #customers th {
			    background-color: #FAFAFA;
                border: 1px solid #ddd;
                padding: 8px;
            }
			#customers td:hover {
                background-color: #f5f5f5;
            }
            .shadow-1, button, .container {
                box-shadow: 0 1px 3px rgba(0, 0, 255, 0.12), 0 1px 2px rgba(0, 0, 255, 0.24);
            }
            .shadow-2, button:hover, .context_menu_pai, .box_login, .datepicker.dropdown-menu, .dialogbox, .overflow-menu ul {
                box-shadow: 0 2px 5px 0 rgba(0, 0, 255, 0.16), 0 2px 10px 0 rgba(0, 0, 255, 0.12);
            }
            .transition-1, button {
                transition: all .3s ease-out;
                transition-property: all;
                transition-duration: .3s;
                transition-timing-function: ease-out;
            }
            button {
                background-color: #FFFFFF;
                text-align: center
                border: 0;
                padding: 0px;
                width: 70px;
                height: 20px;
                display: inline-block;
                margin: 5px;
                cursor: pointer;
                border-radius: 4px;
            }
            input[type="text"], input[type="password"], input[type="search"] {
                box-shadow: 0 0 0 0;
                border: 0 none;
                outline: 0;
                border-radius: 5px;
                padding: 1px 8px;
                background-color: white;
                color: silver;
            }            
            input[type="text"]:focus, input[type="password"]:focus, input[type="search"]:focus {
                box-shadow: none;
                border: 1px solid;
                border-color: #97B0E6;
            }
		</style>
        <script type="text/javascript">
            function habilitar(e){
                if (e.value == "HabilitaOk"){
                    document.getElementById('div_form_Ok').style.display = "block";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaHome"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "block";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaEstoque"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "block";
                    document.getElementById('div_form_Cancel').style.display = "none";
                }
                if (e.value == "HabilitaCancel"){
                    document.getElementById('div_form_Ok').style.display = "none";
                    document.getElementById('div_form_Home').style.display = "none";
                    document.getElementById('div_form_Estoque').style.display = "none";
                    document.getElementById('div_form_Cancel').style.display = "block";
                }
            }
        </script>
    </head>	
	<body>
        <table border="0" id="customers">
		<tr>
		<td align="center"><button onClick="habilitar(this)" id="btn_ok"      value="HabilitaOk"      style="display:block">OK      </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_home"    value="HabilitaHome"    style="display:block">Home    </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_estoque" value="HabilitaEstoque" style="display:block">Estoque </button></td>
        <td align="center"><button onClick="habilitar(this)" id="btn_cancel"  value="HabilitaCancel"  style="display:block">Cancel  </button></td>
		</tr>
		</table>
		<br />
		<div id="div_form_Ok" style="display:block">
			<form method="post" action="incluir.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Informações para incluir</td></tr>
			<tr><td align="right">Nome:  </td><td><input type="search"   id="Nome"  placeholder="Digite seu nome."  size="50" required autofocus /> </td></tr>
			<tr><td align="right">Senha: </td><td><input type="password" id="Senha" placeholder="Digite sua senha." size="50" required />           </td></tr>
			<tr><td colspan="2" align="center"><input type="submit" value="Ok"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Home" style="display:none">
			<form method="post" action="index.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Redirecionar para Home</td></tr>
			<tr><td align="center"><input type="submit" value="Home"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Estoque" style="display:none">
			<form method="post" action="estoque.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Verificar Estoque</td></tr>
			<tr><td align="center"><input type="submit" value="Estoque"/></td></tr>
			</table>
			</form>
		</div>
		<div id="div_form_Cancel" style="display:none">
			<form method="post" action="logout.php">
			<table border="0" id="customers">
			<tr><td colspan="2" align="center">Logout</td></tr>
			<tr><td align="center"><input type="submit" value="Cancel"/></td></tr>
			</table>
			</form>
		</div>
	</body>	
</html>

 

Aqui tem outro exemplo: Exibir Formulário Oculto com Botão.

 

Espero ter ajudado.

 

Att.

Felipe Coutinho

 Obrigado, peguei o que você fez e modifiquei um pouco e funcionou.

Compartilhar este post


Link para o post
Compartilhar em outros sites

  • Conteúdo Similar

    • Por violin101
      Caros amigos, saudações.

      Estou com uma dúvida, referente cálculo de valores em tempo real.

      Tenho uma rotina, que faz o cálculo, o problema é mostrar o resultado.

      Quero mostrar o RESULTADO assim: 0,00  ou  0.00

      Abaixo posto o código.
      jQuery('input').on('keyup',function(){ //Remover ponto e trocar a virgula por ponto var m = document.getElementById("pgRest").value; while (m.indexOf(".") >= 0) { m = m.replace(".", ""); } m = m.replace(",","."); //Remover ponto e trocar a virgula por ponto var j = document.getElementById("pgDsct").value; while (j.indexOf(".") >= 0) { j = j.replace(".", ""); } j = j.replace(",","."); m = parseFloat(jQuery('#pgRest').val() != '' ? jQuery('#pgRest').val() : 0); j = parseFloat(jQuery('#pgDsct').val() != '' ? jQuery('#pgDsct').val() : 0); //Mostra o Resultado em Tempo Real jQuery('#pgTroco').val(m - j); <<=== aqui estou errando })  
       
      Grato,
       
      Cesar
       
       
    • Por violin101
      Caro amigos, saudações.

      Tenho uma tabela escrita em JS que funciona corretamente.
       
      Minha dúvida:
      - como devo fazer para quando a Tabela HTML estiver vazia, exibir o LOGO da Empresa ?

      Abaixo posto o script:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'i' ) return;// Não é Ctrl+A, portanto interrompemos o script evt.preventDefault(); //Chama a Função Calcular Qtde X Valor Venda calcvda(); var idProdutos = document.getElementById("idProdutos").value; var descricao = document.getElementById("descricao").value; var prd_unid = document.getElementById("prd_unid").value; var estoque_atual = document.getElementById("estoque_atual").value; var qtde = document.getElementById("qtde").value; var vlrunit = document.getElementById("vlrunit").value; var vlrtotals = document.getElementById("vlrtotal").value; var vlrtotal = vlrtotals.toLocaleString('pt-br', {minimumFractionDigits: 2}); if(validarConsumo(estoque_atual)){ //Chama a Modal com Alerta. $("#modal_qtdemaior").modal(); } else { if(qtde == "" || vlrunit == "" || vlrtotal == ""){ //Chama a Modal com Alerta. $("#modal_quantidade").modal(); } else { //Monta a Tabela com os Itens html = "<tr style='font-size:13px;'>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='id_prds[]' value='"+idProdutos+"'>"+idProdutos+"</td>"; html += "<td width='47%' height='10'>"+ "<input type='hidden' name='descricao[]' value='"+descricao+"'>"+descricao+ "<input type='hidden' name='esp[]' value='"+prd_unid+"'> - ESP:"+prd_unid+ "<input type='hidden' name='estoq[]' value='"+estoque_atual+"'></td>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='qtde[]' value='"+qtde+"'>"+qtde+"</td>"; html += "<td width='12%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrunit[]' value='"+vlrunit+"'>"+vlrunit+"</td>"; html += "<td width='14%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrtotal[]' value='"+vlrtotal+"'>"+vlrtotal+"</td>"; html += "<td width='12%' height='10' style='text-align:center;'>"+ "<button type='button' class='btn btn-uvas btn-remove-produto' style='margin-right:1%; padding:1px 3px; font-size:12px;' title='Remover Item da Lista'>"+ "<span class='fa fa-minus' style='font-size:12px;'></span></button></td>"; html += "</tr>"; $("#tbventas tbody").append(html); //Função para Somar os Itens do Lançamento somar(); $("#idProdutos").val(null); $("#descricao").val(null); $("#prd_unid").val(null); $("#qtde").val(null); $("#vlrunit").val(null); $("#vlrtotal").val(null); $("#idProdutos").focus(); //Se INCLUIR NOVO produto - Limpa a Forma de Pagamento $("#pgSoma").val(null); $("#pgRest").val(null); $("#pgDsct").val(null); $("#pgTroco").val(null); $("#tbpagar tbody").empty(); }//Fim do IF-qtde }//Fim do Validar Consumo });//Fim da Função btn-agregar  
      Grato,

      Cesar
       
    • Por violin101
      Caros amigos, saudações.

      Estou com uma pequena dúvida se é possível ser realizado.

      Preciso passar 2 IDs para o Sistema executar a função, estou utilizando desta forma e gostaria de saber como faço via JS para passar os parâmetro que preciso.

      Observação:
      Dentro da TABELA utilizei 2 Forms, para passar os IDS que preciso, funcionou conforme código abaixo.
      <div class="card-body"> <table id="tab_clie" class="table table-bordered table-hover"> <thead> <tr> <th style="text-align:center; width:10%;">Pedido Nº</th> <th style="text-align:center; width:10%;">Data Pedido</th> <th style="text-align:center; width:32%;">Fornecedor</th> <th style="text-align:center; width:10%;">Status</th> <th style="text-align:center; width:5%;">Ação</th> </tr> </thead> <tbody> <?php foreach ($results as $r) { $dta_ped = date(('d/m/Y'), strtotime($r->dataPedido)); switch ($r->pd_status) { case '1': $status = '&nbsp;&nbsp;Aberto&nbsp;&nbsp;'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#000000'; //Cor: Preta break; case '2': $status = 'Atendido Total'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#086108'; //Cor: Verde break; case '3': $status = 'Atendido Parcial'; $txt = '#000000'; //Cor: Branco $cor = '#FEA118'; //Cor: Amarelo break; default: $status = 'Cancelado'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#D20101'; //Cor: Vermelho break; } echo '<tr>'; echo '<td width="10%" height="10" style="text-align:center;">'.$r->pd_numero.'</td>'; echo '<td width="10%" height="10" style="text-align:center;">'.$dta_ped.'</td>'; echo '<td width="32%" height="10" style="text-align:left;">'.$r->nome.'</td>'; echo '<td width="10%" height="10" style="text-align:left;"><span class="badge" style="color:'.$txt.'; background-color:'.$cor.'; border-color:'.$cor.'">'.$status.'</span></td>'; echo '<td width="5%" style="text-align:center;">'; ?> <div class="row"> <?php if($this->permission->checkPermission($this->session->userdata('permissao'), 'vPedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/visualizar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-warning" title="Visualizar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-search icon-white"></i></button> </form> <?php } if($this->permission->checkPermission($this->session->userdata('permissao'), 'ePedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/editar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-primary" title="Editar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-edit icon-white"></i></button> </form> <?php } ?> </div> <?php echo '</td>'; echo '</tr>'; } ?> </tbody> </table> </div>
      Grato,

      Cesar.
    • Por belann
      Olá!
       
      Estou usando o editor quill em uma página html, sem fazer a instalação com npm, mas usando as api´s via internet com http, no entanto não consigo fazer a tecla enter funcionar para mudança de linha, tentei essa configuração abaixo, mas não funcionou.
       
      modules: {       syntax: true,       toolbar: '#toolbar-container',       keyboard: {         bindings: {           enter: {             key: 13,             handler: function(range, context) {                       quill.formatLine(range.index, range.length, { 'align': '' });             }           }  
       
    • Por violin101
      Caros amigos, saudações.
       
      Gostaria de poder tirar uma dúvida com os amigos.
       
      Como faço uma função para Comparar a Data Digitada pelo o Usuário com a Data Atual ?

      Data Digitada:  01/09/2024
       
      Exemplo:
      25/09/2024 é menor que DATA Atual  ====> mensagem: informe uma data válida.
      25/09/2024 é igual DATA Atual ===> o sistema libera os INPUT's.
       
      Como faço uma comparação com a Data Atual, para não Deixar Gravar Data retroativa a data Atual.
       
      Grato,
       
      Cesar
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.