Just starting to learn the Yii. I do not know how to change the button and remove the "No files selected" in the widget "CMultiFileUpload" in Yii framework?
$this->widget('CMultiFileUpload', array(
'model'=>$model,
'attribute'=>'photos',
'accept'=>'jpg|jpeg|gif|png',
'name'=>'photos',
'remove'=>'remove',
'options'=>array(
),
'denied'=>'File is not allowed',
'max'=>4, // max 10 files
));
This is browser dependent. Ex. Mozilla shows the input file type field with "No files selected". In IE it will come defferently.
If you want to hide the message "No files selected", do it with CSS
If you want to customize more, Try this bellow code.
Add this CSS code in your CSS file
Add this jQuery code in your javascript file
Now Yii code