1234567891011121314151617181920212223242526272829 |
- $(document).ready(function() {
- $('.btn-group').button();
- $('[data-toggle="tooltip"]').tooltip();
- $('.fileinput').click(function() {
- var realinputid = '#' + $(this).attr('id').replace(/_chooser.*/, '');
- $(realinputid).click();
- });
- $('input[type="file"]').change(function() {
- var choosertxtid = '#' + $(this).attr('id') + '_choosertxt';
- $(choosertxtid).val($(this).val());
- });
- $('.dropdown-menu li').click(function() {
- var menu = $(this).parent();
- var items = menu.children();
- var button = menu.prev();
- var input = button.prev();
- items.removeClass('active');
- $(this).addClass('active');
- button.text($(this).text());
- button.append(' <span class="caret"></span>');
- input.attr('value', $(this).text());
- });
- });
|