PaoloVIP
(Paolo Visnoviz)
1
Hello,
is there a way to styling this button:
<?= $form->field($model, 'file')->fileInput() ?>
looking like:
<?= Html::submitButton(Yii::t('app', 'Send'), ['class' => 'btn btn-primary']) ?>
?
ajberri
(Alex)
2
First parameter are the html options. So your code should just be:
<?= $form->field($model, 'file')->fileInput(['class' => 'btn btn-primary']) ?>
PaoloVIP
(Paolo Visnoviz)
3
Thank you, but is not what I want, I must investigate more. 