I too am having this same problem listed below. I am new to Joomla and modifying code and really need help. I'm trying to add the code below to see if it will fix the problem, but don't know where to insert it. At least where I insert it doesn't seem work. I can't find anything around line 67 of the newest version of listtab that resembles any of that (one released around 12/6/06). Do I need to add the code somewhere or do I need to modify some existing code? Any help would be appreciated.
Weatherangel wrote:
There is a bug in backend. I have selected a tab to where i need a list and in frontend it works like a charm adding new data to the list. However, in backend I cannot add anything to the list. When i press add nothing happens.
I fixed it on my site(s) by commenting out line 67 in listtab.php, and including the javascript file rather than calling it. Here's my code changes:
[code:1]
//$ret ="<script src=\"components/com_comprofiler/plugin/user/plug_listtab/funcs.js\" type=\"text/javascript\"></script>";
$ret = "<script type=\"text/javascript\">";
ob_start();
include('funcs.js');
$funcs = ob_get_contents();
ob_end_clean();
$ret .= $funcs."</script>";
[/code:1]
Ilene
Post edited by: Weatherangel, at: 2006/10/03 21:24[/quote]