mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
Added support for min, max, and step for the number field type
This commit is contained in:
parent
67ee2229a5
commit
8c9be817cc
@ -2,15 +2,23 @@
|
|||||||
<?php if ($this->previewMode): ?>
|
<?php if ($this->previewMode): ?>
|
||||||
<span class="form-control"><?= $field->value ? e($field->value) : ' ' ?></span>
|
<span class="form-control"><?= $field->value ? e($field->value) : ' ' ?></span>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
|
<?php
|
||||||
|
$min = isset($field->config['min']) ? $field->config['min'] : false;
|
||||||
|
$max = isset($field->config['max']) ? $field->config['max'] : false;
|
||||||
|
$step = isset($field->config['step']) ? $field->config['step'] : 'any';
|
||||||
|
?>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="number"
|
type="number"
|
||||||
step="any"
|
step="<?= $step ?>"
|
||||||
name="<?= $field->getName() ?>"
|
name="<?= $field->getName() ?>"
|
||||||
id="<?= $field->getId() ?>"
|
id="<?= $field->getId() ?>"
|
||||||
value="<?= e($field->value) ?>"
|
value="<?= e($field->value) ?>"
|
||||||
placeholder="<?= e(trans($field->placeholder)) ?>"
|
placeholder="<?= e(trans($field->placeholder)) ?>"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
|
<?= $min ? 'min="' . $min . '"' : ''; ?>
|
||||||
|
<?= $max ? 'max="' . $max . '"' : ''; ?>
|
||||||
<?= $field->hasAttribute('pattern') ? '' : 'pattern="-?\d+(\.\d+)?"' ?>
|
<?= $field->hasAttribute('pattern') ? '' : 'pattern="-?\d+(\.\d+)?"' ?>
|
||||||
<?= $field->hasAttribute('maxlength') ? '' : 'maxlength="255"' ?>
|
<?= $field->hasAttribute('maxlength') ? '' : 'maxlength="255"' ?>
|
||||||
<?= $field->getAttributes() ?>
|
<?= $field->getAttributes() ?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user