CakePHP-AjaxMultiUpload icon indicating copy to clipboard operation
CakePHP-AjaxMultiUpload copied to clipboard

dropBox is not visible in the form

Open faiyazalam opened this issue 9 years ago • 1 comments

Hi,

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

Form->create('UseType'); ?>
<fieldset>
    <legend><?php echo __('Edit Use Type'); ?></legend>
<?php
    echo $this->Form->input('id');
    echo $this->Form->input('name');
    echo $this->Form->input('description');
    echo $this->Upload->edit('UseType', $this->Form->fields['UseType.id']);
?>
</fieldset>
Form->end(__('Submit')); ?>

but when I use the following code alone , it is visible

Upload->edit('UseType', $this->Form->fields['UseType.id']);?>

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

faiyazalam avatar Jan 01 '16 07:01 faiyazalam

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

faiyazalam avatar Jan 02 '16 16:01 faiyazalam