|
Size: 1317
Comment:
|
Size: 1335
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 17: | Line 17: |
| {{{#!highlight sh cp ~/Downloads/bootstrap-table-master.zip /tmp/ cd /tmp/ unzip bootstrap-table-master.zip cd bootstrap-table-master cd dist cp bootstrap-table.min.* /dest/folder }}} |
|
| Line 18: | Line 26: |
| * cp ~/Downloads/bootstrap-table-master.zip /tmp/ * cd /tmp/ * unzip bootstrap-table-master.zip * cd bootstrap-table-master * cd dist * cp bootstrap-table.min.* /dest/folder {{{ |
{{{#!highlight js |
Bootstrap
Check CSS styles in http://getbootstrap.com/css/
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
http://getbootstrap.com/components/#input-groups
Dropdown with textfield
$('.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);
});