Yii v2 snippet guide

Comparing #242 with #243

Revision #243 was created by rackycz rackycz on Oct 8, 2020, 2:41:47 PM.

Modal and ajax

Content

[...]
// This section can be moved to "\views\layouts\main.php"
yii\bootstrap\Modal::begin([
'header' => '<span id="myModalTitle">Title</span>',
'id' => 'myModalDialog',
'size' => 'modal-lg',
  'clientOptions' => [
 
      // https://getbootstrap.com/docs/3.3/javascript/#modals-options
 
      'keyboard' => false, // ESC key won't close the modal
 
      'backdrop' => 'static', // clicking outside the modal will not close it
 
      ],
 
]);
echo "<div id='myModalContent'></div>";
yii\bootstrap\Modal::end();

$this->registerJs(
"// If you use $(document).on, it will handle also events on elements rendered by AJAX.
[...]