var inputParameters = application.ADF.data.duplicateStruct(arguments.parameters); var currentValue = arguments.value; // the field's current value // reset the currentValue to the currentDefault try { // if there is a user defined function for the default value if( inputParameters.useUDef ) currentValue = evaluate(inputParameters.DEFAULTVALUE); else // standard text value currentValue = inputParameters.DEFAULTVALUE; } catch( any e) { ; // let the current default value stand } // field renders only a hidden control public void function renderStandard() { renderControl(argumentCollection=arguments); }