次のボタンでデータを保存しようとしています。次のボタンをクリックしてフォームに入力した後、「データを送信するかどうか」を尋ねるポップアップダイアログボックスが開きます。
だからこれのために私がしたこと
送信ボタンには、次のコードがあります。
<?php echo $this->Form->submit('Next', array('class' => 'btn btn-primary','id'=>'movesubmitbtn'));?>
その Cakephp 送信ボタン
ここに私のjavascriptコードがあります:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Interrupt the submit function
$('#movesubmitbtn').click(function(){
if(confirm('This is your final submission of the data. Do you want to continue?')) {
return true;
}
else {
return false;
}
});
movesubmitbtn
});
</script>
データが存在する場合にのみポップアップを取得するように無効化プロパティを追加する方法を教えてください。