Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can call another view directly using the skin:view tag. skin:view is a real workhorse - we use it all the time.

skin:view example
Code Block
titleExtract from ./dmHTML/displayPageHome.cfm

<div id="main">
	<div class="container_12">
		<div class="grid_12 content">
		<skin:view typename="#stobj.typename#" objectid="#stobj.objectid#" webskin="#url.bodyView#" />
		</div>
	</div>
</div>

View Inheritance

FarCry is an object oriented framework. All content types extend the core types component (an abstract class). Any views associated with types are automatically inherited by other content types, such as our dmHTML content type.

...