CakePHP-AjaxMultiUpload
CakePHP-AjaxMultiUpload copied to clipboard
dropBox is not visible in the form
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.
I found the solution : http://stackoverflow.com/questions/34554331/dropbox-is-not-visible-in-the-form-cakephp-ajaxmultiupload/34567006#34567006