ColdFusion 9.0 Resources |
ColdFusion.ProgressBar.hideDescriptionHides the progress bar if it is displayed. Function syntaxColdFusion.ProgressBar.hide(progressBarId) HistoryColdFusion 9: Added this function Parameters
ReturnsThis function does not return a value. UsageThis function lets you hide the progress bar if it is displayed. You display the progressbar using the function ColdFusion.ProgressBar.show or by setting the attribute autodisplay to true in the tag cfprogressbar. The following example shows how to use this function: <cfprogressbar name="pBar" autodisplay="true"> <cfinput type="button" onClick="ColdFusion.ProgressBar.hide('pBar')"> |