現在見積書作成ツールを作っています。
作成した見積書を上司にメールで送信する際に確認アラートを出したいと考えております。
削除ボタンに書いてあるconfirmのようにconfirmを使えばうまく動くと思ったのですが、確認アラートが出ずにメールが送信されてしまいます。
どのように書けば確認アラートを出すことが出来るでしょうか?
//削除ボタン <?= $this->Form->postLink(__('見積書を削除する'), ['action' => 'delete', $estimation->id], array('class' => 'btn btn-danger ','confirm' => __('本当に削除しますか?', $estimation->id))) ?> //送信ボタン <?=$this->Form->create('Estimation', ['url' => ['action' => 'sendRequestMail', 'type' => 'post']])?> <li><?=$this->Form->select('to',array('label'=>'送信先', 'options'=>$users, 'class' => 'form-control col-xs-3'));?></li> <li><?=$this->Form->submit('承認依頼を送る',array('class' => 'btn btn-primary ','confirm' => __('送信しますか?')))?></li> <?=$this->Form->end()?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/02 11:32