custom.js 780 B

1234567891011121314151617181920212223242526272829
  1. $(document).ready(function() {
  2. $('.btn-group').button();
  3. $('[data-toggle="tooltip"]').tooltip();
  4. $('.fileinput').click(function() {
  5. var realinputid = '#' + $(this).attr('id').replace(/_chooser.*/, '');
  6. $(realinputid).click();
  7. });
  8. $('input[type="file"]').change(function() {
  9. var choosertxtid = '#' + $(this).attr('id') + '_choosertxt';
  10. $(choosertxtid).val($(this).val());
  11. });
  12. $('.dropdown-menu li').click(function() {
  13. var menu = $(this).parent();
  14. var items = menu.children();
  15. var button = menu.prev();
  16. var input = button.prev();
  17. items.removeClass('active');
  18. $(this).addClass('active');
  19. button.text($(this).text());
  20. button.append(' <span class="caret"></span>');
  21. input.attr('value', $(this).text());
  22. });
  23. });