Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 2746 Rev 2747
Línea 213... Línea 213...
213
                    content: JSON.stringify(getContent()),
213
                    content: JSON.stringify(getContent()),
214
                    vacancy_uuid: $('#vacancy_uuid').val(),
214
                    vacancy_uuid: $('#vacancy_uuid').val(),
215
                    candidate_uuid: $('#candidate_uuid').val(),
215
                    candidate_uuid: $('#candidate_uuid').val(),
216
                    points: $('#points').val(),
216
                    points: $('#points').val(),
217
                    comment: $('#comment').val(),
217
                    comment: $('#comment').val(),
218
                    interview_status: $('#interview_status').val(),
218
                    type: $('#type').val(),
219
                    status: $("status").val(),
219
                    status: $("status").val(),
220
                }
220
                }
221
            }).done(function(response) {
221
            }).done(function(response) {
222
                NProgress.start();
222
                NProgress.start();
223
                if (response['success']) {
223
                if (response['success']) {
Línea 457... Línea 457...
457
                                    echo $this->formSelect($element);
457
                                    echo $this->formSelect($element);
458
                                    ?>
458
                                    ?>
459
                                </div>
459
                                </div>
460
                                <div class="form-group">
460
                                <div class="form-group">
461
                                    <?php
461
                                    <?php
462
                                    $element = $form->get('interview_status');
462
                                    $element = $form->get('type');
463
                                    $element->setAttributes(['class' => 'form-control']);
463
                                    $element->setAttributes(['class' => 'form-control']);
464
                                    $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
464
                                    $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
465
                                    echo $this->formLabel($element);
465
                                    echo $this->formLabel($element);
466
                                    echo $this->formSelect($element);
466
                                    echo $this->formSelect($element);
467
                                    ?>
467
                                    ?>