MACROMEDIA COLDFUSION 4.5-CFML LANGUAGE Reference page 229

Cfml language reference
Table of Contents

Advertisement

Chapter 1: ColdFusion Tags
FONTSIZE
Optional. Font size for label text measured in points.
ITALIC
Optional. Enter Yes for italicized label text, No for normal text. Default is No.
BOLD
Optional. Enter Yes for bold label text, No for medium text. Default is No.
NOTSUPPORTED
Optional. The text you want to display if the page containing a Java applet-based
CFFORM control is opened by a browser that does not support Java or has Java
support disabled. For example:
NOTSUPPORTED="<B> Browser must support Java to
view ColdFusion Java Applets</B>"
By default, if no message is specified, the following message appears:
<B>Browser must support Java to <BR>
view ColdFusion Java Applets!</B>
Example
<!--- This example shows how to use CFSLIDER
within CFFORM --->
<HTML>
<HEAD>
<TITLE>
CFSLIDER Example
</TITLE>
</HEAD>
<BODY bgcolor=silver>
<H3>CFSLIDER Example</H3>
<P>CFSLIDER, used within a CFFORM, can provide
additional functionality to Java-enabled browsers.
<P>Try moving the slider back and forth to see the
real-time value change.
how CFSLIDER passes its value on to a new CF template.
<P>
<CFIF IsDefined("form.mySlider") is True>
<H3>You slid to a value of <CFOUTPUT>#mySlider#</CFOUTPUT></H3>
Try again!
</CFIF>
<CFFORM ACTION="cfslider.cfm" METHOD="POST" ENABLECAB="Yes">
1 <CFSLIDER NAME="mySlider" VALUE="12" LABEL="Actual Slider Value
RANGE="1,100" ALIGN="BASELINE"
Then, submit the form to show
205
"

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Coldfusion 4.5

Table of Contents