var inputParameters = application.ADF.data.duplicateStruct(arguments.parameters); var currentValue = arguments.value; // the field's current value inputParameters = setDefaultParameters(argumentCollection=arguments); var inputParameters = Duplicate(arguments.parameters); if ( NOT StructKeyExists(inputParameters, "fieldID") ) inputParameters.fieldID = arguments.fieldName; if ( (NOT StructKeyExists(inputParameters, "fieldClass")) OR ( LEN(TRIM(inputParameters.fieldClass)) LTE 0) ) inputParameters.fieldClass = ""; return inputParameters; // field renders only a hidden control public void function renderStandard() { renderControl(argumentCollection=arguments); } /* IMPORTANT: If loadResourceDependencies() are using ADF.scripts loadResources methods, getResourceDependencies() and loadResourceDependencies() must stay in sync by accounting for all of required resources for this Custom Field Type. */ /* If resources are needed load them here ... */ /*public void function loadResourceDependencies() { // Load registered Resources }*/ /* ...and list the resource names or aliases here... */ /*public string function getResourceDependencies() { return ""; }*/