Hi Mohammad,
We have validated
the reported issue based on your shared information, but we cannot replicate
the reported issue on our end. find the validated code example here:
|
template>
<div class="control_wrapper">
<ejs-uploader id='chunkupload' name="UploadFiles" :asyncSettings= "path" ref="uploadObj"></ejs-uploader>
<button @click='btnClick'>ClickToCall Retry</button>
</div>
</template>
<script>
import { UploaderComponent } from "@syncfusion/ej2-vue-inputs";
//Component
registeration
export default {
name: 'App',
components:
{
'ejs-uploader' : UploaderComponent,
},
setup()
{
var path = {
saveUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Save',
removeUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Remove',
chunkSize: 500000
}
return {
path
};
},
methods: {
btnClick: function () {
this.$refs.uploadObj.retry()
},
}
}
|
Find the
validated sample in the attachment:
If still, you
have faced the same issue, then please replicate the reported issue on the
attached sample and revert us with detailed issue replication procedure. These details
will help us to provide an exact solution as earlier as possible.
Regards,
Sureshkumar P