Breaking: #68276 - Remove ExtJS Quicktips if possible¶
See forge#68276
Description¶
The method Page
, which was used to enable ExtJS quicktips, has been removed.
In some places like RTE or workspaces the Quicktips are still in use, but will be removed as soon as possible.
Impact¶
All calls to the PHP method Page
will throw a fatal error.
Affected Installations¶
Instances which make use of Page
.
Migration¶
No migration, use bootstrap tooltips, which work out of the box as alternative.
Simple add data-
and data-
to any element you want.
Example¶
<a href="#" data-toggle="tooltip" data-title="My very nice title">My Link</a>
Copied!