Development Guide
Modal
This component has been moved to the Kitchen Sink. See: Kitchen Sink Documentation
ILIAS 5.0 integrates the bootstrap UI framework. Bootstrap supports modal dialogs as UI components. In the past some ILIAS features made use of YUI panels. These should be replaced by bootstrap modals.
Rendering the content of the modal on server side:
1 | include_once("./Services/UIComponent/Modal/classes/class.ilModalGUI.php"); |
Showing/hiding the modal on client side:
1 | $('#ilIntLinkModal').modal('show'); |