ColdFusion 9.0 Resources |
ColdFusion.ProgressBar.resetDescriptionResets the progress status and messages. Function syntaxColdFusion.ProgressBar.reset(progressBarId) HistoryColdFusion 9: Added this function Parameters
ReturnsThis function does not return a value. UsageResets the progress on a progress bar as shown in the following example: <cfform> <cfprogressbar name="pBar" width="500"/> <cfinput type="button" name="pBtn" onClick="ColdFusion.ProgressBar.reset('pBar')"> </cfform> |