Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Modals
Actions that require a user's attention must be visualized by modal windows.
TYPO3 provides an API as basis to create modal windows with severity
representation. For better UX, if actions (buttons) are attached to the modal,
one button must be a positive action. This button should get a btn
to highlight it.
Modals should be used rarely and only for confirmations. For information that does not require a confirmation the Notification API (flash message) should be used.
For complex content, like forms or a lot of information, use normal pages.
API
The API provides only two public methods:
TYPO3.Modal. confirm (title, content, severity, buttons) TYPO3.Modal. dismiss () 
Modal settings
title
- 
                        
- Required
 - 
            
    
true
 - type
 - 
            
    
string
 
The title displayed in the modal
 
content
- 
                        
- Required
 - 
            
    
true
 - type
 - 
            
    
string|jQuery
 
The content displayed in the modal
 
severity
- 
                        
- type
 - 
            
    
int
 - Default
 - 
            
    
TYPO3.Severity. info  
Represents the severity of a modal. Please see
TYPO3..Severity  
buttons
- 
                        
- type
 - 
            
    
object[]
 
Actions rendered into the modal footer. If empty, the footer is not rendered. See section Modals on how to configure the buttons.
 
Button settings
text
- 
                        
- Required
 - 
            
    
true
 - type
 - 
            
    
string
 
The text rendered into the button.
 
trigger / action
- 
                        
- Required
 - 
            
    
true
 - type
 - 
            
    
function
 
Callback that is triggered on button click - either a simple function or
Deferred/Action ImmediateAction  
active
- 
                        
- type
 - 
            
    
bool
 
Marks the button as active. If true, the button gets the focus.
 
btnClass
- 
                        
- type
 - 
            
    
string
 
The CSS class for the button.
 
Data Attributes
It is also possible to use 
        data attributes to trigger a modal,
for example on an anchor element, which prevents the default behavior.
data-title - The title text for the modal.
 data-bs- content - The content text for the modal.
 data-severity - The severity for the modal, default is 
info(seeTYPO3.).Severity.*  data-href - The target URL, default is the 
hrefattribute of the element. data-button- close- text - Button text for the close/cancel button.
 data-button- ok- text - Button text for the ok button.
 class="t3js-modal- trigger" - Marks the element as modal trigger.
 
Example:
Examples
A basic modal (without anything special) can be created this way:
TYPO3.Modal.confirm('The title of the modal', 'This the the body of the modal');
    A modal as warning with button:
TYPO3.Modal.confirm('Warning', 'You may break the internet!', TYPO3.Severity.warning, [
  {
    text: 'Break it',
    active: true,
    trigger: function() {
      // break the net
    }
  }, {
    text: 'Abort!',
    trigger: function() {
      TYPO3.Modal.dismiss();
    }
  }
]);
    
A modal as warning:
TYPO3.Modal.confirm('Warning', 'You may break the internet!', TYPO3.Severity.warning);
    Action buttons in modals created by the 
        TYPO3/ module may
make use of 
        TYPO3/ and
        TYPO3/.
As an alternative to the existing 
        trigger option, the option
        action may be used with an instance of the previously mentioned modules.
Modal.confirm('Header', 'Some content', Severity.error, [
  {
    text: 'Based on trigger()',
    trigger: function () {
      console.log('Vintage!');
    }
  },
  {
    text: 'Based on action',
    action: new DeferredAction(() => {
      return new AjaxRequest('/any/endpoint').post({});
    })
  }
]);
    
Activating any action disables all buttons in the modal. Once the action is done, the modal disappears automatically.
Buttons of the type 
        Deferred render a spinner on activation
into the button.