Hope this is clear...
I created an action form that allows users to populate records onto a table.
I would like to use radio buttons that would allow users to select from a list of options. Once a user select the button option this option will populate a field on a table called "Request".
The field on the table "Request" is what is giving me the problem. This specific field is defined on table Requests as lookup field that gets its information from linked table "TypeofRequest". TypeOfRequest is populated with a number of requests types, such as: reunion, party, other...
My problem is that once I select the radio option the action form does not recognize the radio value since it reads only one table.
Is there a way around it???
Sorry if I am not making this any clear. I'll understand if you can't provide me with a solution....
Thanks in advance
PS: source code for web-form request.cfm:
<form action="insert.cfm" method="post">
<td><input type="radio" name="party" value="RequestType"
</td>
<!--- where party is the name of a field in table TypeOfRequest, and value is name of field in table Request --->
Source code for Insert.cfm
<cfinsert datasource="mydatasource" table="Request"
I created an action form that allows users to populate records onto a table.
I would like to use radio buttons that would allow users to select from a list of options. Once a user select the button option this option will populate a field on a table called "Request".
The field on the table "Request" is what is giving me the problem. This specific field is defined on table Requests as lookup field that gets its information from linked table "TypeofRequest". TypeOfRequest is populated with a number of requests types, such as: reunion, party, other...
My problem is that once I select the radio option the action form does not recognize the radio value since it reads only one table.
Is there a way around it???
Sorry if I am not making this any clear. I'll understand if you can't provide me with a solution....
Thanks in advance
PS: source code for web-form request.cfm:
<form action="insert.cfm" method="post">
<td><input type="radio" name="party" value="RequestType"
</td>
<!--- where party is the name of a field in table TypeOfRequest, and value is name of field in table Request --->
Source code for Insert.cfm
<cfinsert datasource="mydatasource" table="Request"