Здравствуйте, подскажите как сделать в Adobe Muse на форме обратного звонка функцию "Прикрепить файл" ?
В обработчике пытался указать
type => 'file' , но не помогло.
Вот мой html
<input style="float:left;" class="fld-input NoWrap actAsDiv" id="u14880-file" name="userfile" type="file">
А вот обработчик
'fields' => array(
'custom_U14884' => array(
'order' => 1,
'type' => 'string',
'label' => 'Name',
'required' => true,
'errors' => array(
'required' => 'Field \'Name\' is required.'
)
),
'Email' => array(
'order' => 2,
'type' => 'email',
'label' => 'EMAIL',
'required' => true,
'errors' => array(
'required' => 'Field \'EMAIL\' is required.',
'format' => 'Field \'EMAIL\' has an invalid email.'
)
),
'custom_U14872' => array(
'order' => 4,
'type' => 'string',
'label' => 'MESSAGE',
'required' => false,
'errors' => array(
)
),
'custom_U14876' => array(
'order' => 3,
'type' => 'string',
'label' => 'CELL PHONE',
'required' => true,
'errors' => array(
'required' => 'Field \'CELL PHONE\' is required.'
)
),
'userfile' => array(
'order' => 5,
'type' => 'string',
'label' => 'FILE',
'required' => false,
'errors' => array(
'required' => 'Field \'FILE\' is required.'
)