Bug #27395
Multicolumn conflicts with other extensions using JQuery
| Status: | Accepted | Start date: | 2011-06-12 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| TYPO3 Version: | 6.0 | PHP Version: | ||
| Votes: | 0 |
Description
I noticed multicolumn conflicts with imagecycle extension.
Multicolumn extension includes JQuery via tsconfig.
It may conflict with other extensions using JQuery as well.
Maybe it is possible to make Jquery switch on/of in TS setup or
in installation configuration?
History
Updated by Michael Birchler about 2 years ago
Hi,
Why not remove it in TSconfig? You can overwrite it or remove it by TSconfig...
Updated by Kestutis no-lastname-given about 2 years ago
True. I solved this by
tx_multicolumn.config.advancedLayouts >
I just think Jquery conflicts may bring constant
confusion for average users.
Maybe using t3jquery could help to avoid conflicts?
Updated by hwt3 almost 2 years ago
Yes, there are some jquery conflicts. The config possibility over ts is ok but an autocheck like powermail does and a t3jquery.txt would make ich much easier for average users.
Updated by Daniel C almost 2 years ago
hwt3 wrote:
Yes, there are some jquery conflicts. The config possibility over ts is ok but an autocheck like powermail does and a t3jquery.txt would make ich much easier for average users.
Same experiences here. I want to run powermail and multicolum on the same page. The result is the jquery conflicts. In my case powermail is using t3jquery. I implemented this type of automation into my extension code (because powermail, t3jquery and multicolumn are dependencies) to deactivate the advanced layout of multicolum extension with "tx_multicolumn.config.advancedLayouts >"
if(t3lib_extMgm::isLoaded('t3jquery') && t3lib_extMgm::isLoaded('multicolumn')) {
t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:'.$_EXTKEY.'/res/typoscript/ext/multicolumn/setup_page.ts">');
}
Otherwhise I would prefer an information about the depending jquery libraries/plugins/modules.
Updated by Dmitry Dulepov 4 months ago
- Status changed from New to Accepted