Questions tagged [modal]
A modal is a dialog popup window that is displayed on top of the current page.
36 questions
0
votes
1
answer
13
views
How do I get Joomla to display the "Insert Media" button in the Joomla media manager (versions 4, 5, and 6) when loaded in an iframe?
I'm developing a custom Joomla component and I am trying to summon a “select media” modal in an iframe. I have it mostly working, but the window is not displaying the “Insert Media” or “Select” button ...
1
vote
0
answers
73
views
Using Javascript to trigger a long running task
I have developed a component, and in one view a button can be clicked to invoke a task in the Controller. This task can take several minutes to run, so I'd like to be able to prevent the button being ...
0
votes
1
answer
67
views
Select Article Field like it is used in com_menu to select an article in a PopUp
For one of my projects (Custom Module) I would like to have a "com_menus"-styled modal to select an article - unfortunately it looks like this is not a "default form field type".
...
0
votes
1
answer
159
views
Loading a JS file with web asset manager for Bootstrap modal
I'm loading a Bootstrap modal file in HtmlView.php and then a js file to manage it with the following schema:
joomla.asset.json
...
"assets": [
{
"name": "almacen....
2
votes
1
answer
171
views
How to initialize joomla modal through js
I'm customizing a view in my component, I have tabs, each tab contains a modal, but when adding a new tab using js, I don't know how to initialize the new tab's modal via js?
1
vote
0
answers
92
views
How to preserve hyperlinks in Joomla4 when using enqueueMessage()?
How can I add a hyperlink in an error message in Joomla4?
I used hyperlinks in enqueueMessage text in joomla 3.x without any problems.
Now I'm using Joomla 4.x and it removes the hyperlink -- it ...
1
vote
1
answer
314
views
Use Text-Editor in UIkit Modal (Module Backend)
For a new Project i would like to have an editor instance inside a modal popup (click on an object to add / edit details). I have my Custom Field that loads an editor like so:
$editor = JEditor::...
1
vote
2
answers
365
views
Is it possible to open a lightbox in Joomla 3.9 from an external link inside an Epub?
I'm a writer.
I'm creating an enhanced Epub novel with Sigil. Within the novel, I display small size pictures. For each picture, I want the reader to click on the legend below the picture that will ...
0
votes
1
answer
121
views
Link to article in module
Good day.
There is a custom field in my module
mod_expandAjaxReq.xml
<fieldset name="basic" addfieldpath="/modules/mod_expandajaxreq/models/fields">
<field name="...
0
votes
1
answer
302
views
Button in the Joomla Toolbar should open a Modal Confirm Window
I work on a Joomla Site View for my component with content which can be unlocked via points. In this thread I fixed my controller problem already, so now I have a simple button, and if I press it, the ...
3
votes
1
answer
889
views
JHtml::_('bootstrap.renderModal',,,); Joomla Bootstrap List of all parameters that can be used?
First I want to thank @Lodder and @Irfan for the below code which helped out a lot. The code below will create a button that launches a native Joomla Bootstrap modal.
$modalTitle = 'myModal';
$...
1
vote
1
answer
320
views
How to disable close modal box when click background?
I use Joomla modal to popup an internal link.
JHTML::_('behavior.modal');
<a class="modal" href="contact-us.html" rel="{size: {x: 480, y: 500}, handler:'iframe'}">...
1
vote
0
answers
764
views
Joomla 4 alpha display modal with insert image button
I am developing a custom module in Joomla4 alpha, using a bootstrap rendered modal window so that the user of the component will assign images from media in the Joomla back end to the extension ...
0
votes
0
answers
418
views
Why can't I use a modal close button in the Joomla! modal body?
I have managed to get front end editing opening in a modal. Which is pretty useful in my opinion. However the cancel button is irrelevant in this situation. In the normal operation it cancels ...
2
votes
1
answer
627
views
Reload admin form after save field in database
In a custom component I need the user in the edit view of an item to be able to load a field in the editor field through modal and ajax.
The case is the user can fill an editor field from a text ...