Reputation: 29
I am now creating a form for uploading photos using Kartik File Input Widget in yii2 framework.
Visit http://demos.krajee.com/widget-details/fileinput
In that widget, "Upload" Button function is similar to "Submit" Button in form. So I would like to remove that "Upload" Button of Kartik File Input Widget. Where can I change code in order to remove that "Upload" button in code?
Thanks!
Upvotes: 1
Views: 2887
Reputation: 18021
Add this in widget configuration:
'pluginOptions' => [
'showUpload' => false
],
Upvotes: 2