Hi Notion,
i am working on the manual also. I wanted to write it with the new RSform! 2.0 i am working on, since there will be many functionalities coming up..
Yes, it is correct. It depends where you place the text. If you place it in the description textarea, then the syntax is:
<tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{fielddesc}</td></tr>
if you place it in the Default Value text, then the syntax would be:
<tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{field}</td></tr>
If you want to make the textarea 100% try adding
rows=10 style=width:100%; to the additional attributes
About the static link.. yes.. and if you want to add it to a menu, just select Link - URL from the menu options, and paste the link there.
About the embedding... i think the best way is to create your form and show it normally, by adding free text fields where you want descriptions.
If you want to put multiple fields on the same line, you have to understand how RSform! parses it's fields. Imagine that RSform! takes each field's Field Style value, and places them in row, one after the other as code.
so if in Field1, you have <tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{field}</td></tr> and in field 2 you have <tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{field}</td></tr>
the result will be
<tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{fieldtitle}{field}</td></tr><tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{fieldtitle}{field}</td></tr>
But if in field1 you place <tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{fieldtitle}{field} and in field2 you put {fieldtitle}{field}</td></tr>, then the result will be
<tr><td valign=\"top\" width=\"100%\" colspan=\"3\">{fieldtitle}{field}{fieldtitle}{field}</td></tr>
and so you have 2 fields on the same row.
Your last request... yes.. it's doable. You have to use the mod_forme_list module that you find in Support > Files. Install it, and then customize it, and in the row layout, type something like this:
<tr><td><a href=\"index.php?option=com_forme&fid=2&email={email}\">{email}</a></td><td>{subject}</tr>
Let me explain what it does:
it creates rows with what users submitted, ordered by date added desc. This way your moderator will have a list in the front-end showing like an inbox.
The next step would be to edit form number two, create the email field, then in Scripts called on form display: type this code:
foreach($fields as $i=>$field){
if($field->name=='email'){
if(isset($_GET['email'])) $fields[$i]->default_value = $_GET['email'];
}
}