- Issue created by @glennnz
- Assigned to viren18febs
- Status changed to Needs review
over 1 year ago 6:14am 25 August 2023 - ๐ฎ๐ณIndia viren18febs
Hi glennnz,
You can use the modal classes for predefined size of module as per requirements, these are some of them.
.modal-sm, .modal-lg, .modal-xl.if you want to fully responsive, then you need to use media queries in CSS file.
- Issue was unassigned.
- ๐ณ๐ฟNew Zealand glennnz
@viren18febS
Like this?
<a class="use-ajax" data-dialog-type="modal-xl" href="..........
This doesn't work, the link doesn't open, no modal window appears.
Thanks,
Glenn - Status changed to Active
over 1 year ago 9:35am 25 August 2023 - ๐ฎ๐ณIndia viren18febs
@glennnz
You can use this. This is the working example and you can change it as per your requirement..
<div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> ... </div> </div> </div> <button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bd-example-modal-lg">Large popup</button>
- Status changed to Needs review
over 1 year ago 10:00am 25 August 2023 - ๐ฎ๐ณIndia viren18febs
Or You can define the size of modal as follows.
- ๐ณ๐ฟNew Zealand glennnz
#9 works with a small typo correction, add quotes, thus:
<a href=โ/node/3โ data-dialog-type=โmodalโ class=โuse-ajaxโ data-dialog-option="{"width":800, "height":500}">Node 3</a>
- Status changed to Fixed
over 1 year ago 11:29am 25 August 2023 Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
12 months ago 2:37pm 9 April 2024 - ๐ง๐ชBelgium leanderjcc Ghent
This wasn't working for me as the attribute should be "data-dialog-options" instead of "data-dialog-option".
Thus, the correct example being:
<a href=โ/node/3โ data-dialog-type=โmodalโ class=โuse-ajaxโ data-dialog-options="{"width":800, "height":500}">Node 3</a>
As form element:
$form['somelink'] = [ '#type' => 'link', '#title' => 'Some link', '#url' => $url, '#attributes' => [ 'class' => [ 'use-ajax', ], 'data-dialog-type' => 'modal', 'data-dialog-options' => Json::encode([ 'width' => 800, 'height' => 500, ]), ], ];