|
DescriptionShows
the progress bar if it is hidden.
Function syntaxColdFusion.ProgressBar.show(progressBarId)
HistoryColdFusion
9: Added this function
Parameters
Parameter
|
Description
|
progressBarId
|
Name of the progress bar object. This must
be a valid ColdFusion identifier.
|
ReturnsThis
function does not return a value.
UsageThis
function lets you display the progress bar if it is hidden.
You
hide the progress bar using the function ColdFusion.ProgressBar.hide or
by setting the attribute autodisplay to false in
the cfprogressbar tag.
The following example
shows how to use this function:
<cfprogressbar name="pBar" autodisplay="false">
<cfinput type="button"
onClick="ColdFusion.ProgressBar.show('pBar')">
|
|
|