6

我在模态窗口中有两个 ActiveForm,在提交第一个表单后,我需要更新第二个并保持模态。

模态的

据我了解 pjax 可以处理,但不能让它正常工作。

在 _form.php 我有 ActiveForm 和应该更新的小部件:

<?php $form = ActiveForm::begin([
    'id'=>'form',
    'enableAjaxValidation'=>true,
]); ?>
<?= Html::activeHiddenInput($riskModel, 'id', ['value' => $riskModel->id]) ?>

<?php Pjax::begin([
    'id' => 'solutionItems',
]) ?>
//need to update this widget
    <?= $form->field($riskModel, 'solutions_order')->widget(SortableInput::classname(), [
        'items' => $riskModel->getSolutionList(),
        'hideInput' => false,
        'options' => ['class'=>'form-control', 'readonly'=>false]
    ]); ?>
<?php Pjax::end() ?>

<div class="form-group">
    <?= Html::submitButton($riskModel->isNewRecord ? 'Create' : 'Update', ['class' => $riskModel->isNewRecord ? 'btn btn-success' : 'btn btn-primary', 'onclick' => 'return isConnected()']) ?>
</div>

<?php ActiveForm::end(); ?>

然后我有 Ajax 请求,如果创建了新的解决方案,它将返回成功:

$.ajax({
    url: form.attr('action'),
    type: 'post',
    data: form.serialize(),
    success: function (data) {
        if (data && data.result == 1) {
            $.pjax.reload({container:'#solutionItems'});
        }
    },
    error: function (XMLHttpRequest, textStatus, errorThrown) {
        $("#error").html("Kļūda! Neizdevās pievienot ierakstu.").fadeIn('highlight','', 2000, callbackError());
        $("#solutions-solution").val("");
    }
});

$.pjax.reload({container:'#solutionItems'});

关闭模态。如果我将返回的值放在一个 div 中,那么 ajax 可以正常工作并且模态不会关闭。

4

2 回答 2

2

没有 $.pjax 管理,只是添加了这个

 $("#risks-solutions_order-sortable").append('<li data-id="'+data.id+'" data-key="'+data.id+'" draggable="true">'+data.solution+'</li>');
 $("ul[id$='sortable'").trigger('sortupdate');
 $('#risks-solutions_order-sortable').sortable( "refreshPositions" );

ajax 成功,一切正常!:)

于 2015-02-23T14:49:59.297 回答
0

也许增加/禁用超时可能有助于解决这个问题。

$.pjax.reload('#solutionItems', {timeout : false});

更多细节可以在这里找到:yii2 how to use pjax when hyperlink is not in pjax

于 2016-08-26T16:01:17.450 回答