Client Tasks Update  
<client:clienttaskupdatemodule/>  
 

The Client Task Update module provides a method for a client user to update the status of a task assigned to him or her. The module also provides an area to upload a file associated with the task, as well as a comments area.

The Client Tasks Update allows the following attributes:

upload_header header text for the file upload
filename_entry_label label for the file upload field
status_header header text for task status completion
status_checkbox_label label for the status completion check box
status_checkbox_name text description for the status completion
status_comments_label label for the comments area
submit_button_label text of submit button
advance_page page to return after updating the task
task_id identification number of the task
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 Client Tasks Update:

<client:clienttaskupdatemodule 
	title="Update Task"
	width="95%"
	border="0"
	cellspacing="0"
	cellpadding="3"
	upload_header="Choose a file from your local machine to upload"
	filename_entry_label="Upload File:"
	status_header="Change your status below when you have completed this task"
	status_checkbox_label="Status:"
	status_checkbox_name="&nbsp;TaskComplete"
	status_comments_label="Comments"
	submit_button_label="Save"
	advance_page="showallclienttasks.jsp"
	task_id=<%=request.getParameter("id")%> />