Discussion Topic Posts  
<client:threadmodule/>  
 

The Discussion Topic Posts displays all the posts for a particular Dicussion Topic.

The Discussion Topic Posts allows the following attributes:

post_page page in the Project Site where Discussion Posts are made
sort_order sort order either ascending or descending
owner_title label for the discussion owner
submit_value text of the submit button
thread_title label for the post area of the discussion
document_list_title label for the document list field
document_title label for the document field
info_title label for the information area of the discussion
last_post_title label for the latest post field
project_title label for the project field
retired_title label retired field
total_posts_title label for the total number of posts field
properties a semicolon-delimited list of property names in the left-to-right order they are displayed. If a list is not provided, the module defaults to all properties. The properties define the columns displayed in each module. See available properties in the table below.
property_titles a semicolon-delimited list of property titles in the left-to-right order they are displayed. The order of field names must match the field names in the "properties" attribute.
column_widths a semicolon-delimited list of column widths. The order of column widths will match the column names in the "properties" and "property_titles" attributes. Column widths can be pixels or percentage of available space.
sort_property the property that the list data will be sorted on initially
detail_property the property that links to the detail page. If the property is not provided, no link will appear.
detail_page the file name of the detail page that the detail property will link to. If the file name is not provided, no link will appear.
detail_target target window, so the tag can be used inside a frame
show_all_page the name of the page the "Show All" link will link to. If the name is not provided, the "Show All" link will not appear.
show_all_text the text of the "Show All" link
pagination the number of list items to be shown at a time in the module. If pagination is not provided, the module defaults to 10 items.
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>.

The Discussion Topic Posts allows the following properties:

Author author of the post
AuthorEmail email for the author of the post
CreateDate date of the post
Message text of the post

Sample of the Discussion Topic Posts:

<client:threadmodule
	title="Discussion Topic:"
	properties="author;authorEmail;createDate;message"
	property_titles="Author:;Email:;Post Date:;Message:"
	pagination="<%=String.valueOf(Integer.MAX_VALUE)%>"
	sort_order="decending"
	info_title="Topic Information"
	owner_title="Discussion Owner:"
	document_list_title="Document List:"
	document_title="Document:"
	last_post_title="Last Post:"
	project_title="Project:"
	retired_title="Retired:"
	total_posts_title="Total Posts:"
	thread_title="Duscussion:"	
	submit_value="Post Reply"	
	post_page="threadpost.jsp"/>