Summary:
List template does not show all fields (solved probably)
Detailed Description:
Hello,
I just posted this message:
http://forum.cmsmadesimple.org/index.php/topic,27495.msg142397.html#msg142397
I think it's a bug, and found the solution.
Tested on 1.4.1 and 1.5.1
formbrowser: Version: 0.2.3
Please correct me if i'm wrong.
Regards
Eugène Broeren
-------------------------
Hello,
There is a bug in the "Listtemplate" tab.
I noticed also unexpected behavior.
I found out that alll the variables were stored in the database because i
checked the export-tab (export to csv).
After some research i find out that the variable $count
FormBrowser/classes/Browser.class.php has something to do with it the following
issue.
Please correct me if i am wrong.
----------------------------------
>> $mod_ptr->smarty->assign('count',count($response->names)+1)
and
>> $mod_ptr->smarty->assign('fieldcount',count($names));
----------------------------------
Solution:
Open the listtemplate - tab and change the following lines:
29 from {section name=namelist start=0 loop=$count}
29 to {section name=namelist start=0 loop=$fieldcount}
41 from {section name=namelist start=0 loop=$count}
41 to {section name=namelist start=0 loop=$fieldcount}
Now it works for me !
Eugène Broeren