Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using a datapicker on demand, I'm creating/destroying it dynamically since I'm using data type filter on a text field. I want to have different styles, classes according the type of the data, for that Ihave a select with allowed data types (date, integer, float, string) and I managed datepicker creation/destruction on the onChange function of the select

Here's how my form looks like [1] and here's my code:

$(document).ready(function() {
    //NOTE: Let's call this space 'UPHERE' (I will explain later on this)

    /********** Eventos ************/
    //Validar form FRparametro
    $('#FRparametro').submit(validarForm);

    //Cambiar tipo de datos
    $('#SLtipoDato').change(cambiarTipo);
    //---------- Fin Eventos ----------

    /************* Funciones ***************/

    /**
     * Función para validar que la fecha introducida sea válida
     * @author  Cristian Gómez Alvarez <cristianpark@gmail.com>
     * @fecha   Agosto 31 de 2012
     */ 
    function cambiarTipo(){
        if($(this).val()=='date'){   //DATA TYPE: date
            if($("#prmValor").datepicker("option", "buttonText")==null){  //The datapicker doesn't exists yet
                alert('Date. No existe el componente');

                //Se crea el contenedor para seleccionar fecha
                $("#prmValor").datepicker({
                    showOn: 'button',
                    buttonImage: '<?php echo RUTAW ?>/lib/img/calendar.png',
                    buttonImageOnly: true,
                    dayNamesMin: ['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sa'],
                    monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
                    dateFormat: 'yy-mm-dd',
                    changeYear: true,
                    buttonText: 'Seleccione fecha'
                });
            }
            else{   //The Datepicker already exists
                alert('Date. Existe el componente');
            }
        }
        else{       //DATA TYPE: One among int. float or string
            if($("#prmValor").datepicker("option", "buttonText")!=null){  //The Datepicker already exists, we try to destroy it
                alert('No Date. Existe el componente');
                $("#prmValor").datepicker("destroy");
            }
            else{   //The datepicker doesn't exists yet (nothing to do)
                alert('No Date. No Existe el componente');
            }
        }
    //----------------------------------------

    ......
});

If I create the datepicker when the form loads, on the UPPER part (what I called 'UPHERE') and invoke destroy, it works as spected but as soon as I recreate the datepicker dynamically (on cambiarTipo function) I got the same behavior

I used $("#prmValor").datepicker("option", "buttonText") to determine wether the datepicker component is assigned or not and it seems to work well since the alerts shows propertly

I think this is because the dynamic creation of the component but I didn't find any suitable solution, I just can think of hiding the image created for the datepicker (class ui-datepicker-trigger) but this is far from ortodoxe

Thanks in advance

[1] http://i.imgur.com/mGr1P.png

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.