From: <ndi...@us...> - 2002-09-03 22:06:04
|
Update of /cvsroot/modus/org/bacfug/modus/fields In directory usw-pr-cvs1:/tmp/cvs-serv14147/bacfug/modus/fields Modified Files: yesno.cfc Log Message: just adding in the attributes. mostly I just want to see if the new CVS syncmail is actually working ;) Index: yesno.cfc =================================================================== RCS file: /cvsroot/modus/org/bacfug/modus/fields/yesno.cfc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** yesno.cfc 3 Sep 2002 08:49:03 -0000 1.3 --- yesno.cfc 3 Sep 2002 22:06:01 -0000 1.4 *************** *** 1,5 **** <cfcomponent extends="org.bacfug.modus.fields.baseField" displayname="yesno" hint="The field for yes/no radio buttons"> <!--- override the toFormField method to make a TEXTAREA ---> ! <cffunction name="toFormField"> <cfreturn instance.formFieldFactory.makeRadio(getName(),"yes",getValue()) & --- 1,5 ---- <cfcomponent extends="org.bacfug.modus.fields.baseField" displayname="yesno" hint="The field for yes/no radio buttons"> <!--- override the toFormField method to make a TEXTAREA ---> ! <cffunction name="toFormField" access="public" output="no" hint="Renders two radio buttons with values ""yes"" and ""no"""> <cfreturn instance.formFieldFactory.makeRadio(getName(),"yes",getValue()) & |