Ajax features

edit

All the CFML ajax/client side tags are considered deprecated in Lucee and are only provided for minimal backwards compatibility.

They aren't extensible and there are far better modern, javascript alternatives available.

Here are some (older) examples of how to replace these tags with javascript https://static.raymondcamden.com/cfuitherightway/index.html

Functions

  • AjaxOnLoad()

    Causes the specified JavaScript function to run when the page loads.

Tags

  • <cfajaximport>

    Controls the JavaScript files that are imported for use on pages that use Luceex AJAX tags and features.

  • <cfajaxproxy>

    Creates a JavaScript proxy for a component, for use in an AJAX client. Alternatively, creates a proxy for a single CFC method, JavaScript function, or URL that is bound to one or more control attribute values.

  • <cfdiv>

    Creates an HTML tag with specified contents and lets you to use bind expressions to dynamically control the tag contents.

  • <cfform>

    Builds a form with CFML custom control tags that provide more functionality than standard HTML form input elements (XML and Flash type not supported).

  • <cfinput>

    Used inside cfform to place radio buttons, checkboxes, or text boxes. Provides input validation for the specified control type.

  • <cflayout>

    This tag is deprecated|deprecated

  • <cflayoutarea>

    This tag is deprecated|deprecated

  • <cfmap>

    This are provided for backwards compatibility, and should be considered deprecated|deprecated These tags are quite limited and difficult to extend, it's reco...

  • <cfmapitem>

    Used with tag-map, this tag lets you add markers on the map. This tag is deprecated|deprecated

  • <cfselect>

    Used inside cfform, cfselect lets you construct a drop-down list box form control. You can populate the drop-down list box from a query, or using the option tag. Use option elements to populate lists. The syntax for the option tag is the same as for its HTML counterpart.

  • <cfslider>

    Used inside cfform, cfslider lets you place a slider control in a CFML form. A slider control is like a sliding volume control. The slider groove is the area over which the slider moves.

  • <cfwindow>

    Creates a pop-up window in the browser. Does not create a separate browser pop-up instance.

Categories

Guides

See also