Page 1 of 1

CGFeedback issue in admin panel

Posted: Tue Aug 27, 2013 5:29 pm
by blackhawk
I have cmsms 1.11.7 installed with CGFeedback 1.6
Whenever I go into my admin panel for CGFeedback, I get the following error in my console window under Google Chrome 29.x
Uncaught TypeError: Object [object Object] has no method 'cluetip'
http://xxx/xxx/moduleinterface.php?mact ... 0completed
When I go the that location via the console window, its refering to this code...

Code: Select all

if( typeof jQuery != 'undefined' ) {
jQuery(document).ready(function($) {
  // tooltip plugins
  $("a.tooltip").cluetip({local:true, cursor: 'pointer'});
  $('#toggle_filter').on('click',function(){
    $('#filterbox').toggle();
  });
}); // end
}
Refreshing doesn't help. The error is still there. The only way to remove it is to travel to another link within the Content group. Other groups such as Layout, Users & Groups, Extensions, etc, are not clickable at this point.

Re: CGFeedback issue in admin panel

Posted: Tue Aug 27, 2013 7:27 pm
by Dr.CSS
Your server is using PHP 5.3.*..?

System info is always helpful...

Re: CGFeedback issue in admin panel

Posted: Tue Aug 27, 2013 9:57 pm
by blackhawk
Yes its using PHP 5.3, but this looks like a JavaScript issue...

Re: CGFeedback issue in admin panel

Posted: Tue Aug 27, 2013 11:13 pm
by calguy1000
Install the JQueryTools module.

Re: CGFeedback issue in admin panel

Posted: Wed Aug 28, 2013 1:45 pm
by blackhawk
Thanks Calguy,
I did what you requested and now I am getting a different error (the initial error is gone). The new error in the console window says...

Uncaught SyntaxError: Unexpected identifier

on line 49 of file moduleinterface.php

At the line, the console window is pointing to this code...

Code: Select all

<!-- JQueryTools version 1.2.5 -->
<__script__ type="text/javascript">//<![CDATA[
jQuery(document).ready(function($){jQuery(".cms_sortable").tablesorter({widthFixed:true,widgets:['zebra'],sortList:[[0,0]]})jQuery('div.accordion').accordion();jQuery('a.lightbox').lightBox();jQuery('a.fancybox').fancybox();jQuery("a.tooltip").cluetip({local:true,cursor:'pointer'});});//]]></__script>
It could be a syntax error...?