srs81 / CakePHP-AjaxMultiUpload

CakePHP 2 plugin to allow for easy multi-file upload with AJAX
Other
65 stars 33 forks source link

dropBox is not visible in the form #53

Open faiyazalam opened 8 years ago

faiyazalam commented 8 years ago

Hi,

I am using the following code inside edit.ctp but the drop box is not visible here.

Form->create('UseType'); ?>
Form->input('id'); echo $this->Form->input('name'); echo $this->Form->input('description'); echo $this->Upload->edit('UseType', $this->Form->fields['UseType.id']); ?>
Form->end(__('Submit')); ?>

but when I use the following code alone , it is visible
<?php echo $this->Upload->edit('UseType', $this->Form->fields['UseType.id']);?>

I tried this in cakephp 2.6 with default theme. Please resolve this.

faiyazalam commented 8 years ago

I found the solution : http://stackoverflow.com/questions/34554331/dropbox-is-not-visible-in-the-form-cakephp-ajaxmultiupload/34567006#34567006