I'm currently developing Joomla's component for my client. I need media form field and editor form field in a form page to input the data I need.
it should be work just like in administrator system.
all plugins button in the editor form field (article, image, contact, menu, module) are not worked as expected in administrator site. in the pop up frame seems they don't load bootstrap(see the images in attachment. I tried to insert codes to load bootstrap in the com_media layout and it worked. so I assume this is a bug. And I also tried in all default templates in Joomla and still it has the same result.
Joomla 3.9.0
PHP 7.2.0
below are the results :
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-11-28 15:00:44 |
Closed_By | ⇒ | mbabker |
The modals use your active template's
component.php
file. Joomla core does not arbitrarily load the Bootstrap assets anywhere, but the core templates do as they are built on Bootstrap.You will need to ensure your template is loading Bootstrap (adding
JHtml::_('bootstrap.loadCss');
to thecomponent.php
file will do the trick), or create layout overrides and adapt those to your template's theming.Closing as this is not a core bug.