Skip to main content
September 30, 2009
Question

Datefield CFINPUT not working Firefox 3

  • September 30, 2009
  • 4 replies
  • 2133 views

Hi there,

I have this code

<cfinput type="datefield" name="dFechaDesde" message="Ingrese una fecha de desde la cual iniciar la busqueda" required="yes" />

This work fine with IE, but with Firefox dont show the calendar? Some fix?

Thank you

    This topic has been closed for replies.

    4 replies

    September 30, 2009

    Bingo,

    Thank you Cameron !

    You give a good idea, my FireBug, give me a warining "_f is undefined in calendar.js"

    The problem is the declaration of the <cfform> tag.

    <table>

         <cfform></cfform>

    </table>

    I moved the form outside of the table.

    <cfform>

         <table>

         </table>

    </cfform>

    I know it's working.

    Thank you everbody.

    September 30, 2009

    Thank you, friends My form is HTML format.

    I am using Firefox 3.5.3.

    Inspiring
    September 30, 2009

    Have a look @ Firefox's error log and see if it's reporting any problems...

    --

    Adam

    BKBK
    Community Expert
    Community Expert
    September 30, 2009

    Verify that each cfform  attribute is valid. You should consider getting the latest version of Firefox. The following code displays a calendar in Firefox 3.5.3

    <cfform>
    <cfinput type="datefield" name="dFechaDesde" message="Ingrese una fecha de desde la cual iniciar la busqueda" required="yes" />
    </cfform>

    Inspiring
    September 30, 2009

    Could it be a flash issue? The datefield type uses Flash for the calendar, so perhaps Flash is not configured correctly in Firefox. Try reinstalling the Flash player in FF.