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

ColdFusion.ProgressBar.update

Last update:
May 18, 2026

Description

Updates attribute values.

Function syntax

ColdFusion.ProgressBar.update(progressBarId,config)

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.
configObject
An object containing configuration parameters, interval, duration, and oncomplete.

Returns

This function does not return a value.

Usage

Updates any of the attribute values duration , interval, or oncomplete as shown in the following example:
<cfprogressbar name="pBar" autodisplay="false"> 
 <cfinput type="button" 
 onClick="ColdFusion.ProgressBar.update('pBar', {interval:6000, duration:10000, oncomplete:newoncomplete})">

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