Bootstrap

Bootstrap Table

Bootstrap table displays data in a tabular format and offers rich support to radio, checkbox, sort, pagination and so on.

https://github.com/wenzhixin/bootstrap-table/archive/master.zip

        jQuery.noConflict();
        $('#table-pagination-data').bootstrapTable({   url: baseUrl + '/xyz/getData' });
        $('#modalDiv').modal('show');

http://getbootstrap.com/components/#input-groups

$('.dropdown-menu li').click(function(event) {
    event.stopPropagation();
    event.preventDefault();
    var selValue = $(this).children('a').html();
    $(this).parent().parent().removeClass('open');
    $(this).parent().parent().parent().children('input').val(selValue);
});

Javascript/Bootstrap (last edited 2015-03-12 21:47:48 by 54)