WDDX

WDDX Field

The WDDX form tool requires FarCry 4.1. It is not available in earlier versions of FarCry.

This form tool provides a way to embed data from a form component. An example of where this might be used is in the dmConfig type which needs to be able to store various different sets of information that can't be defined as a static set of fields. By using this form tool, dmConfig can draw on any of the form components in the application.

Properties that use this form tool need to be type="longchar".

Attribute

Description

Default Value

ftForm

Similar to ftPrefix for webskin - specifies a prefix that restricts the forms that can be chosen

All forms

ftChangable

If false, the user can only select the form type when the item is created. After that only the form fields can be edited.

true

Sample Code

Sample Code Implementation
<cfproperty name="configdata" 
 type="longchar" 
 default="" 
 hint="The config values encoded in WDDX" 
 ftSeq="2" 
 ftLabel="Config" 
 ftType="WDDX" 
 ftChangable="false" />