Revision #244 has been created by rackycz on Oct 11, 2020, 6:04:55 PM with the memo:
ajax modal
« previous (#243) next (#245) »
Changes
Title
unchanged
Yii v2 snippet guide
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
let title = $(this).attr('data-myModalTitle');
if (title==undefined) { title = ''; }
$('#myModalDialog #myModalTitle').text(title);
$('#myModalDialog').find('#myModalContent').html('');
$('#myModalDialog').modal('show')
.find('#myModalContent')
.load($(this).attr('href'));
return false;
});",
yii\web\View::POS_READY,[...]