|
DescriptionUpdates
attribute values.
Function syntaxColdFusion.ProgressBar.update(progressBarId,config)
HistoryColdFusion
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.
|
ReturnsThis
function does not return a value.
UsageUpdates
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})">
|
|
|