ハイパーリンクにjquery確認ウィジェットを追加しました。キャンセルをクリックしてもOKの確認モーダルでリンク先にリダイレクトしています。それを制限する方法。ここに私のコードのスニペットmagentoのjquery確認ウィジェット2
htmlファイル
<td class="col id" >
<a class="action edit" id="edit" href="<?php /* @escapeNotVerified */ echo $block->getEditUrl($_gridrecord->getEntityId()); ?>" data-ui-id="default-shipping-edit-link">
<span>
<?php /* @escapeNotVerified */ echo __('Edit'); ?>
</span>
</a>
jqueryのスクリプト
<script type="text/javascript">// <![CDATA[
require([
'jquery',
'Magento_Ui/js/modal/confirm'
],
function($, confirmation) {
$('#edit').on('click', function(event){
confirmation({
title: 'Some title',
content: 'Some content',
actions: {
confirm: function(){},
cancel: function(){
return false;
},
always: function(){}
}
});
});
}
);
// ]]></script>
いないが、平行で起こっていることはできません。 –
誰でもjqueryウィジェットのサンプルコードをmagento 2で共有してください。 –