• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Module list bug

Module list bug 17 years 11 months ago #792

The module that displays the form data is adding an extra row for each table row I choose to display. For some reason, every row of values adds another blank row to the top of the module. The more entries there are, the more blank space there is. Any ideas?

Here is the code I use for the module config:
------------Module Layout----------------------------
 
<table width=\"595px\" border=\"1\">{formdata}</table>
 
----------------Row Layout--------------------------
 
<table width=\"100%\" style=\"border:1px solid black;\">
<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Account Manager ID:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{AccountManagerID}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">account manager email:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{accountmanageremail}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Sales Rep Manager:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{SalesRepManager}</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Customer Company Name:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\"> {CustomerCompanyName}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">What is the customer's budget:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">
			<p>
			{Whatisthecustomersbudget}
			</p>
 
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Web site type Description:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">
			<p>
			{WebsitetypeDescription}
			</p>
 
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">How will the customer get revenue from the site:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\"> {Howwillthecustomergetrevenuefromthesite}</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Design Plan:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{DesignPlan} </td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">How many products is he/she going to sell online:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\"> {Howmanyproductsisheshegoingtosellonline}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Who is going to input the data?:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\"> {Whoisgoingtoinputthedata}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Will the customer add more categories or products:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\"> {Willthecustomeraddmorecategoriesproducts}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Similar web sites:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">
			<p>
			{Similarwebsites}
			</p>
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Which features does he or she like or dislike:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{Whichfeaturesdoesheshelikedislike} </td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Number of Static HTML Pages:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{NumberofStaticHTMLPages}
 
			</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Flash Template:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{FlashTemplate}</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
		<tr>
			<td width=\"280\"><strong style=\"font-family: verdana\">Selected add-ons:  </strong></td>
			<td width=\"280\" style=\"font-family: verdana; font-size: 11px\">{addons}</td>
		</tr>
		<tr>
			<td height=\"20\"> </td>
		</tr>
 
 
</table>

As you can see, I need to display a lot of values. I think that forme is well on its way to not only being the best form component, but the best ticketing component as well. We just need to fix this module up a bit.

Also, some suggestions regarding this module:
  • Search/sort feature
  • link from ticket number in reply email to front end module
  • row data can be clicked to show entire ticket
  • Date created and IP fields should be added

Thanks again for a great component!!

TheMenace
The administrator has disabled public write access.

Re:Module list bug 17 years 11 months ago #793

  • alex
  • alex's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 443
  • Thank you received: 3
It seems like Joomla is adding <br/> to each of your new line feeds, changing the default HTML code. A quick workaround to this would be to delete all line feeds. Your code should look like this:

Module layout:
{formdata}

Row layout:
&lt;table width=\&quot;100%\&quot; style=\&quot;border:1px solid black;\&quot;&gt;&lt;tr&gt;&lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Account Manager ID:  &lt;/strong&gt;&lt;/td&gt;&lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{AccountManagerID} &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;account manager email:  &lt;/strong&gt;&lt;/td&gt; &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{accountmanageremail}&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;       &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Sales Rep Manager:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{SalesRepManager}&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Customer Company Name:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt; {CustomerCompanyName}            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;What is the customer's budget:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;            &lt;p&gt;            {Whatisthecustomersbudget}            &lt;/p&gt;                        &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Web site type Description:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;            &lt;p&gt;            {WebsitetypeDescription}            &lt;/p&gt;                        &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;How will the customer get revenue from the site:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt; {Howwillthecustomergetrevenuefromthesite}&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Design Plan:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{DesignPlan} &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;How many products is he/she going to sell online:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt; {Howmanyproductsisheshegoingtosellonline}            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Who is going to input the data?:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt; {Whoisgoingtoinputthedata}            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Will the customer add more categories or products:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt; {Willthecustomeraddmorecategoriesproducts}            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Similar web sites:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;            &lt;p&gt;           {Similarwebsites}            &lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Which features does he or she like or dislike:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{Whichfeaturesdoesheshelikedislike} &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Number of Static HTML Pages:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{NumberofStaticHTMLPages}            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Flash Template:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{FlashTemplate}&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td width=\&quot;280\&quot;&gt;&lt;strong style=\&quot;font-family: verdana\&quot;&gt;Selected add-ons:  &lt;/strong&gt;&lt;/td&gt;            &lt;td width=\&quot;280\&quot; style=\&quot;font-family: verdana; font-size: 11px\&quot;&gt;{addons}&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td height=\&quot;20\&quot;&gt; &lt;/td&gt;        &lt;/tr&gt;&lt;/table&gt;

I will fix it as quick as possible, and let you know.

Also, some suggestions regarding this module:

* Search/sort feature

* link from ticket number in reply email to front end module

* row data can be clicked to show entire ticket

* Date created and IP fields should be added

Search - i added this to my todo list.
Link + row link - this would be great. i added it to the list
Date created and Ip: This is already presend(unfortunately i haven't documented it yet). Just add columns as:

{jos_sitename} - site name
{jos_siteurl} - site url
{jos_userip} - user ip
{jos_user_id} - user id (only if user is registered)
{jos_username} - username (only if user is registered)
{jos_email} - user email (only if user is registered)
{jos_counter} - row number
The administrator has disabled public write access.

Re:Module list bug 17 years 11 months ago #797

I really like the list of date and IP fields. That is very helpful.

Unfortunately, the code format above did not fix the problem. Please let me know if you have any ideas.

Also, here is a very cool Jquery utility that would be awesome for sorting tickets:

http://motherrussia.polyester.se/docs/tablesorter/<br><br>Post edited by: themenace, at: 2007/06/01 20:35
The administrator has disabled public write access.

Re:Module list bug 17 years 11 months ago #798

The date field is not listed here
The administrator has disabled public write access.

Re:Module list bug 16 years 9 months ago #3738

I have the same Problem, no one an idea?!<br><br>Post edited by: juergen.urban, at: 2008/07/16 16:26
The administrator has disabled public write access.

Re:Module list bug 16 years 9 months ago #3739

I have the same Problem, no one an idea?!<br><br>Post edited by: juergen.urban, at: 2008/07/16 16:26
The administrator has disabled public write access.

Re:Module list bug 16 years 9 months ago #3761

The module that displays the form data is adding an extra row for each table row I choose to display. For some reason, every row of values adds another blank row to the top of the module. The more entries there are, the more blank space there is. Any ideas?


I have had the same problem and is was so easy, delete all spaces in source code and it works.<br><br>Post edited by: juergen.urban, at: 2008/07/17 13:46
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!