Yii2 Modal on top of another Modal

Hi

May I know how to handle modal on top of another modal?

Can Yii2 Modal do Stackable Modal like http://jschr.github.io/bootstrap-modal/ (click on the stackable)

If not, what is the alternative? How to implement it on my code?

Thanks!





 Modal::begin([

                'toggleButton' => [

                    'label' => '<i class="glyphicon glyphicon-plus"></i> Pop Up Add Screen (Testing)',

                    'class' => 'btn btn-success'

                ],

                'closeButton' => [

                  'label' => 'Close',

                  'class' => 'btn btn-danger btn-sm pull-right',

                ],

                'size' => 'modal-lg',

            ]);

            $myModel = new Property;

            echo $this->render('/property/create', ['model' => $myModel]);

            Modal::end();






yes yii support popup modal as u u referenced.

u can refere this.

My link