Create New Discusion |
|
 |
<client:createthreadmodule/> |
|
|
The Create Discussion module allows the client to start new communication discussions on the project site.
The Create New Discusion allows the following attributes:
post_title |
label for the subject field |
poster_title |
label for the person creating the discussion |
poster_field_size |
value of the size attribute used in the INPUT tag for the person creating the discussion |
email_title |
label for the email address of person creating the discussion |
email_field_size |
value of the size attribute used in the INPUT tag of the email address for the person posting the discussion |
message_title |
label of the the message for the new discussion |
message_field_cols |
value of the cols attribute used in the TEXTAREA for the the message for the new discussion |
message_field_rows |
value of the rows attribute used in the TEXTAREA for the message for the new discussion |
submit_value |
text of the submit button |
success_page |
page returned upon a successful creation of the discussion |
cellspacing |
HTML cell spacing for the table |
cellpadding |
HTML cell padding for the table |
border |
HTML border for the table |
width |
module width, same syntax as HTML table width |
title |
module title |
css_prefix |
All modules reference a common set of styles. If you want your module to have its own set of styles, define this set. Then the set will reference a style named css_prefix<style>. |
Sample of the Create New Discusion:
<client:createthreadmodule
cellspacing="0"
cellpadding="3"
border="0"
width="100%"
title="Create New Discussion Topic"
email_field_size="35"
email_title="Email:"
message_field_cols="40"
message_field_rows="20"
message_title="Message:"
post_title="Enter your message"
poster_field_size="35"
poster_title="Author"
topic_field_size="35"
topic_title="Subject:"
submit_value="Post"
success_page="showallthreadtopics.jsp"/>
|