Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 1134 | Rev 1136 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1134 Rev 1135
Línea 547... Línea 547...
547
            $('#select-conduct').append($('<option>', {
547
            $('#select-conduct').append($('<option>', {
548
                value: '',
548
                value: '',
549
                text: 'LABEL_SELECT'
549
                text: 'LABEL_SELECT'
550
            }));
550
            }));
551
            $.each(data.data, function(i, item) {
551
            $.each(data.data, function(i, item) {
552
                if (!filterItemById(item.uiid)) {
552
                if (!filterItemById(item.uuid)) {
553
                    $('#select-conduct').append($('<option>', {
553
                    $('#select-conduct').append($('<option>', {
554
                        value: item.uuid,
554
                        value: item.uuid,
555
                        text: item.description
555
                        text: item.description
556
                    }));
556
                    }));
557
                }
557
                }