Whatever message this page gives is out now! Go check it out!

ColdFusion.ProgressBar.updatestatus

Last update:
May 18, 2026

Description

Lets you manually update the status and message of the progress bar.

Function syntax

ColdFusion.ProgressBar.updatestatus(progressBarId, status, message)

See also

History

ColdFusion 9: Added this function

Parameters

Parameter
Description
progressBarId
Name of the progress bar object. This must be a valid ColdFusion identifier.
message
Text to be displayed in the progress bar.
status
Progress status.

Returns

This function does not return a value.

Usage

This function helps you to manually set the message and status in the progress bar. For instance, in the case of file upload, you can manually control the progress using this function.The following snippet illustrates how to use the function:
<cfform> 
 <cfprogressbar name="pBar" width="500"/> 
 <cfinput type="button" name="pBtn" onClick=" ColdFusion.ProgressBar.updateStatus('pBar',0.5,'50%')"> 
 </cfform>

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page