ImageManager.populateFields BROKEN

This forum is for general questions about extensions for Joomla! version 1.5.x.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
cxc
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Thu Nov 20, 2008 6:36 pm

ImageManager.populateFields BROKEN

Post by cxc » Mon Nov 24, 2008 8:06 pm

I have used Firefox 3.04 and IE 7.0 to try to do this
with a fresh install of Joomla 1.5.7:

Choose Extensions->Module Manager->"Module name".
Under "Custom Output," choose "Image."
A windows appears.

No fields populate. There is no affect. The JS is flat broken.
In addition, it only looks in "stories" subdirectory.

Chris

cxc
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Thu Nov 20, 2008 6:36 pm

Re: ImageManager.populateFields BROKEN

Post by cxc » Mon Nov 24, 2008 8:24 pm

Firefox debug log window confirms broken status:

Warning: Error in parsing value for property 'overflow-x'. Declaration dropped.
Source File: /administrator/components/com_media/assets/popup-imagemanager.css
Line: 37

Warning: Error in parsing value for property 'margin-top'. Declaration dropped.
Source File: /administrator/components/com_media/assets/popup-imagelist.css
Line: 38

Error: ImageManager is undefined
Source File: javascript:ImageManager.populateFields('connect.jpg')
Line: 1

Error: ImageManager is not defined
Source File: /administrator/index.php?option=com_media&view=images&tmpl=component&e_name=content
Line: 1

maksimu
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sun Nov 15, 2009 7:33 am

Re: ImageManager.populateFields BROKEN

Post by maksimu » Sun Nov 15, 2009 7:45 am

I just installed fresh copy of Joomla! and tried to add image into my test page and got the same error. Any solutions to this problem?

troyvit
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Jun 12, 2010 3:23 pm

Re: ImageManager.populateFields BROKEN

Post by troyvit » Wed Jul 28, 2010 10:44 pm

This forum is obviously the place where despondent Joomla users go to die.

tbotee
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Wed Jan 29, 2014 9:06 am

Re: ImageManager.populateFields BROKEN

Post by tbotee » Wed Jan 29, 2014 9:09 am

"This is caused typically by a jQuery collision, I believe. Joomla 3.x calls jQuery in the template headers, and some extensions still call it within themselves, thus causing a conflict, and causing JavaScript and jQuery to stop functioning from that point.

I'd recommend disabling all your third-party extensions for the back-end, and find out which one is causing the issue."

viewtopic.php?f=728&t=796424

spitraberg
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Sat Aug 15, 2015 4:49 am

Re: ImageManager.populateFields BROKEN

Post by spitraberg » Sat May 07, 2016 10:21 am

this error happend because the script of popup-imagemanager.js loaded in false location(before jquery js file)

spitraberg
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Sat Aug 15, 2015 4:49 am

Re: ImageManager.populateFields BROKEN

Post by spitraberg » Sat May 07, 2016 10:23 am

therefore you must change the code line of this script,open view.html.php (form \administrator\components\com_media\views\images) in your code editor and change this lines of code from:

spitraberg
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Sat Aug 15, 2015 4:49 am

Re: ImageManager.populateFields BROKEN

Post by spitraberg » Sat May 07, 2016 10:26 am

public function display($tpl = null)
{
$config = JComponentHelper::getParams('com_media');
$lang = JFactory::getLanguage();

JHtml::_('behavior.framework', true);
JHtml::_('script', 'media/popup-imagemanager.js', true, true);
JHtml::_('stylesheet', 'media/popup-imagemanager.css', array(), true);
...

to

public function display($tpl = null)
{
$config = JComponentHelper::getParams('com_media');
$lang = JFactory::getLanguage();

$document = JFactory::getDocument();
JHtml::_('bootstrap.framework');
JHtml::_('behavior.framework', true);

$document->addScript( '/media/media/js/popup-imagemanager.js' );
JHtml::_('stylesheet', 'media/popup-imagemanager.css', array(), true);


Locked

Return to “Extensions for Joomla! 1.5”