Code Monkey home page Code Monkey logo

yii2-ajax-submit-button's Issues

Install by Composer Error

"demogorgorn/yii2-ajax-submit-button": "*"
composer gets message: could not to be any version

with "demogorgorn/yii2-ajax-submit-button": "dev-master" composer install yii2-ajax-submit-button normaly.

No support for file uploads?

Im trying to use it on a form that has file upload widget, all the thing that goes with $_POST are saved, but the $_FILES appear to empty.

option for confirmation

It would be nice to have an optional confirmation alert before the ajax request is submitted, similar to the trash button in the yii2 grid widget.

encodeLabels option

hint: add support to encodeLabels, kind regards;

if (isset($item['encodeLabels'])) {
      $this->encodeLabels = $item['encodeLabels'];
}

Проблема до загрузки

Добрый день, отличная штука, все работает, есть момент - как вызвать событие до отправки данных, то есть как бы показать прелодер, а после загрузки его убрать (убрать знаю как)

Render AjaxSubmitButton in Gridview

I am facing problem in rendering AjaxSubmitButton in Gridview.
It should be on location 1 but i comes on location2.

Following is my code.

`[
'format'=>'html',
'value'=> function() {
AjaxSubmitButton::begin([
'label' => 'Check',
'ajaxOptions' => [
'type' => 'POST',
'url' => 'country/getinfo',
/'cache' => false,/
'success' => new \yii\web\JsExpression('function(html){
$("#output").html(html);
}'),
],
'options' => ['type' => 'submit'],
]);
AjaxSubmitButton::end();

    }

],`
untitled

Usage not possible with ActiveForm?

I am using an active form based on a model and want to submit this via Ajax. The view code basically looks like this:

        <?php $clubForm = ActiveForm::begin([
            'action' => Url::to(['club/ajax-create']),
        ]); ?>

        <?= $clubForm->field($clubModel, 'name')->textInput(['maxlength' => 150]) ?>

        <?= $clubForm->field($clubModel, 'nation')->dropDownList(
            ArrayHelper::map(Nation::find()->all(), 'id', 'name')
        ) ?>

        <div class="form-group">
            <?php AjaxSubmitButton::begin([
                'label' => 'Speichern',
                'id' => 'saveClubButton',
                'ajaxOptions' => [
                    'type' => 'POST',
                    'url' => Url::to(['club/ajax-create']),
                    'success' => new \yii\web\JsExpression('saveCreatedClub(result)'),
                ],
                'options' => ['class' => 'btn btn-success', 'type' => 'submit'],
            ]);
            AjaxSubmitButton::end();
            ?>
        </div>

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

However, pressing the button causes the form to perform a POST request, and the page is reloaded, instead if an AJAX request. (Action is the page where the widget is used).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.