24 lines
852 B
HTML
24 lines
852 B
HTML
<div class="loading-indicator-container size-input-text">
|
|
<input
|
|
placeholder="<?= $placeholder ?>"
|
|
type="text"
|
|
name="<?= $this->getName() ?>"
|
|
value="<?= e($value) ?>"
|
|
data-request="<?= $this->getEventHandler('onSubmit') ?>"
|
|
data-request-complete="if($(this).val().length) {$(this).next().show()} else {$(this).next().hide()};"
|
|
<?= !$searchOnEnter ? 'data-track-input' : '' ?>
|
|
data-load-indicator
|
|
data-load-indicator-opaque
|
|
class="form-control <?= $cssClasses ?>"
|
|
autocomplete="off" />
|
|
<button
|
|
class="clear-input-text"
|
|
type="button"
|
|
value=""
|
|
style="<?= empty($value) ? 'display: none;' : ''; ?>"
|
|
onclick="$(this).prev().val('');$(this).prev().request();"
|
|
>
|
|
<i class="icon-times"></i>
|
|
</button>
|
|
</div>
|