hiddenSearchable.tpl 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. {**********************************************************************
  2. * ProxmoxVps product developed. (2017-08-31)
  3. * *
  4. *
  5. * CREATED BY MODULESGARDEN -> http://modulesgarden.com
  6. * CONTACT -> contact@modulesgarden.com
  7. *
  8. *
  9. * This software is furnished under a license and may be used and copied
  10. * only in accordance with the terms of such license and with the
  11. * inclusion of the above copyright notice. This software or any other
  12. * copies thereof may not be provided or otherwise made available to any
  13. * other person. No title to and ownership of the software is hereby
  14. * transferred.
  15. *
  16. *
  17. **********************************************************************}
  18. {**
  19. * This is default search form template for widget elements
  20. *
  21. * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
  22. *}
  23. {literal}
  24. <div data-toggler-options="toggleClass: is-open" class="lu-input-group lu-input-group--toggle">
  25. <input v-model="sSearch" type="text" data-toggler-options="toggleClass: hidden" placeholder="{/literal}{$MGLANG->absoluteT('searchPlacecholder')}{literal}" class="lu-form-control hidden" @keydown.enter="searchDataEnter">
  26. <button @click="hideSearch" data-toggler="selectors: .lu-btn .lu-btn__icon, .lu-form-control; container: .lu-input-group;" type="button" class="lu-icon-in-button lu-btn lu-btn--sm lu-btn--icon lu-btn--link">
  27. <i data-toggler-options="toggleClass: lu-zmdi-search lu-zmdi-close;" class="lu-btn__icon lu-zmdi lu-zmdi-search"></i>
  28. </button>
  29. </div>
  30. {/literal}