Link to home
Start Free TrialLog in
Avatar of jeffmace
jeffmace

asked on

Problem with CFFORM Flash and Safari Browser???

My flash cfform is working fine in all browsers except for Safari on the PC (I have not been able to test on a Mac, but I will assume for now that it would be the same)...  It seems that when I submit, it is kind of like in an iframe or its own little thing and will not submit correctly.  Its a very basic form, but if someone sees something wrong here, please let me know or if there are any tips on making these types of forms work better.

<cfform format="flash" method="post" width="500" height="400" skin="haloblue" action="#request.base_relative_url#index.cfm?method=#attributes.method#&business_id=#Val(attributes.business_id)#" enctype="multipart/form-data">
            <cfinput type="hidden" name="business_id" value="#URL.business_id#">
                  <cfformgroup type="Panel" label="Rate this Business & Write a Review">
                   <cfformgroup type="horizontal" label="Choose A Rating">
                        <cfinput name="rate" type="radio" label="5" value="5" required="yes" message="Please Select Your Rating" />
                        <cfinput name="rate" type="radio" label="4" value="4" required="yes" message="Please Select Your Rating" />
                        <cfinput name="rate" type="radio" label="2" value="3" required="yes" message="Please Select Your Rating" />
                        <cfinput name="rate" type="radio" label="2" value="2" required="yes" message="Please Select Your Rating" />
                        <cfinput name="rate" type="radio" label="1" value="1" required="yes" message="Please Select Your Rating" />
                  </cfformgroup>
                  <cfformgroup type="horizontal" label="Type Review">
                    <cftextarea name="comment" required="yes" message="Please Enter Your Review"></cftextarea>
                  </cfformgroup>
                  <cfformgroup type="horizontal">
                        <cfinput type="submit" name="submit" value="Submit Review" />
                  </cfformgroup>
                  </cfformgroup>
                  
            </cfform>
ASKER CERTIFIED SOLUTION
Avatar of SRIKANTH MADISHETTI
SRIKANTH MADISHETTI
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jeffmace
jeffmace

ASKER

Thanks for your feedback.. I won't pay much attention to it at this point then.