kartik-v / bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features.
http://plugins.krajee.com/file-input
Other
5.36k stars 2.39k forks source link

Query.Deferred exception: fileinput_3566bbac is not defined #1863

Open LuisEduardoGarcia51981 opened 5 months ago

LuisEduardoGarcia51981 commented 5 months ago

Al usar Fileinput de Kartik, me genera el siguiente error:

Query.Deferred exception: fileinput_3566bbac is not defined ReferenceError: fileinput_3566bbac is not defined at HTMLDocument. (http://localhost:8080/mjg_main_persona/createuser?id=4:1225:47) at mightThrow (http://localhost:8080/assets/6706b111/jquery.js:3489:29) at process (http://localhost:8080/assets/6706b111/jquery.js:3557:12) u

El codigo ingresado en un formulario para un archivo de vista en yii2 es: <?php
echo $form->field($model, 'profile')->widget(FileInput::classname(), [ 'options' => ['accept' => 'image/*'], 'pluginOptions' => [ 'showPreview' => true, 'showCaption' => true, 'showRemove' => true, 'showUpload' => false, ], ]); ?> Ademas uso: use kartik\file\FileInputAsset; FileInputAsset::register($this); Ese error me rompe el codigo y no me permite avanzar con la carga del formulario. El error sucede en la linea 1225: image Como lo puedo solucionar?