Hi:

I have Flash form that works fine in I.E. and Firefox but does not display 
the drop down list in Safari or Chrome.
Searching in Google the best I could find is that it's a bug in 
ColdFusion.

Below is the code I'm using in between <cfform> tags.
Anything wrong in the code?
If not, is there a workaround?

I appreciate any help, insight.

Regards,
Jaime Muniz
 

    <cfformgroup type="horizontal" width = "750" height = "25" Label="Start 
Date Time" visible="yes">
                <cfinput type="datefield" name="StartDate"
required="true" message="Start Date is required" validate="date"
width="100" maxlength="50"
value="#dateformat(request.Reservations.getStartDateTime(),
'm/d/yyyy')#"> </td>                    
                                <cfselect name="startHour" width="50" 
required="true" message="Start Hour is required"> 
                                    <option>01</option>
                                    <option>02</option>
                                    <option>03</option>
                                    <option>04</option>
                                    <option>05</option>
                                    <option>06</option>
                                    <option>07</option>
                                    <option>08</option>
                                    <option>09</option>
                                    <option>10</option>
                                    <option>11</option>
                                    <option>12</option>
                                </cfselect>
                                 <cfselect name="startMinutes"
width="50" required="true" message="Start Minutes is required"> 
                                    <option>00</option>
                                    <option>15</option>
                                    <option>30</option>
                                    <option>45</option>
                                    </cfselect>
                                <cfselect name="StartAmPm" width="50" 
required="true" message="Start AM/PM is required">
                                <option>AM</option>    
                                <option>PM</option>
                                </cfselect>            
                    </cfformgroup>    



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:5823
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-newbie/unsubscribe.cfm

Reply via email to