CMultiFileUpload not show data in edit got in yii

96 Views Asked by At

I am uploading multiple files in Yii with the help of CMultiFileUpload and this is the code:

$this->widget('CMultiFileUpload', array(
    'model' => $model,
    'attribute' => 'file',
    'accept' => 'jpg|gif|png|pdf',
    'options' => array(),
    'denied' => 'File is not allowed',
    'max' => 10
));

It worked in file upload but didn't show any data in edit form.

0

There are 0 best solutions below