Actions
Bug #19829
closedenable JS-Libs in BE
Start date:
2009-01-15
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
after i made a patch for extJS only some problems has been debunked.
- there are 3 libs in contrib that are used: prototype, scriptaculous and extJS
- load order is important
- there must be an easy way to load or make additions
Attached patch gives you all to do it with very easy calls. The order of calls are not important as the load order is given.
Extadapter is choosen automatic dependend of prototype loaded
Scriptaculous Modules can easy be added by call.
No double inclusion is possible, even with equal calls.
Sample of initialize libs in BE:
$this->doc->loadExtJS();
$this->doc->loadPrototype();
$this->doc->loadScriptaculous('builder');
$this->doc->loadScriptaculousModules('dragdrop');
This patch depends on #19812
(issue imported from #M10144)
Files
Actions