Documentation Archive Developer
Search
PATH  WebObjects 4.0 Documentation > WebObjects Tools and Techniques

Table of Contents Previous Section

Working With Dynamic Elements


Introduction to Dynamic Elements

A dynamic element is an element whose exact HTML representation isn't determined until run time. Dynamic elements are represented in the HTML template by the tag <WEBOBJECT>.

There are several types of dynamic elements that you can use in your WebObjects applications. Some of them (such as dynamic forms or images) have counterparts in standard HTML (<FORM> and <IMG>) and are always translated into those counterparts at run time. Others (such as conditionals and repetitions) are abstract dynamic elements, which don't translate directly into HTML but control the generation of other elements.

This chapter describes the techniques you use to add dynamic elements to your components and to bind them to variables and methods in your code. For more information on programming with dynamic elements, see "Dynamic Elements"in the WebObjects Developer's Guide. For details about specific dynamic elements, see the Dynamic Elements Reference.

Table of Contents Next Section