boottstrap table 표 플러그 인 사용 설명

bootstrp-table 학습,구체 적 인 내용 은 다음 과 같 습 니 다.

$table.bootstrapTable({
  url: '../data/data1.json',
  striped: true,
  minimumCountColumns: 2,
  clickToSelect: true,
  detailView: true,
  detailFormatter: 'detailFormatter',
  pagination: true,
  paginationLoop: false,
  classes: 'table table-hover table-no-bordered',
  sidePagination: 'server',
  silentSort: false,
  queryParamsType:'',
  queryParams: queryParams : function(params) {
   var subcompany = $('#subcompany option:selected').val();
   var name = $('#name').val();  
     return {
   pageNumber: params.offset+1,
   pageSize: params.limit,
   companyId:subcompany,
   name:name
   };
  },
  smartDisplay: false,
  idField: 'id',
  sortable: false,
  escape: true,
  idField: 'systemId',
  maintainSelected: true,
  toolbar: '#toolbar',
  columns: [
   {field: 'state', checkbox: true},
   {field: 'id', title: '  ', sortable: true, halign: 'center'},
   {field: 'username', title: '  ', sortable: true, halign: 'center'},
   {field: 'password', title: '  ', sortable: true, halign: 'center'},
   {field: 'name', title: '  ', sortable: true, halign: 'center'},
   {field: 'sex', title: '  ', sortable: true, halign: 'center'},
   {field: 'age', title: '  ', sortable: true, halign: 'center'},
   {field: 'phone', title: '  ', sortable: true, halign: 'center'},
   {field: 'email', title: '  ', sortable: true, halign: 'center'},
   {field: 'address', title: '  ', sortable: true, halign: 'center'},
   {field: 'remark', title: '  ', sortable: true, halign: 'center'},
   {field: 'action', title: '  ', halign: 'center', align: 'center', formatter: 'actionFormatter', events: 'actionEvents', clickToSelect: false}
  ]
 }).on('all.bs.table', function (e, name, args) {
  $('[data-toggle="tooltip"]').tooltip();
  $('[data-toggle="popover"]').popover(); 
 }); 
boottstrap-table 은 표 플러그 인 으로 후 관 시스템 의 데이터 처리 와 리 턴 으로 사용 할 수 있 습 니 다.물론 boottstrap-table 의 사용 은 앞 배경 이 조 화 롭 게 진행 되 어야 합 니 다.
boottstrap-table 을 사용 하 는 과정 에서 주의해 야 합 니 다:
인 터 페 이 스 는 데이터 형식[json]에 포 함 된 두 필드 를 되 돌려 줍 니 다.total(데이터 합계)과 rows(데이터),즉{"total":24,"rows":[...]}
페이지 는 서버 쪽 과 클 라 이언 트 두 가지 상황 을 포함 합 니 다.사무 용 페이지 의 매개 변 수 는 기본 값 은 limit,offset,search,sort,order Else 입 니 다.query ParamsType 매개 변 수 를 통 해 재 작성 할 수 있 습 니 다.
columns 필드 에서:file 은 필드 의 속성 명 을 되 돌려 줍 니 다.title 은 th 제목 내용 을 표시 합 니 다.formatter 는 사용자 정의 목록 에 내용 을 표시 합 니 다.세 개의 매개 변수,value,row,index 를 포함 하고 file 값,줄 데이터,줄 수 를 포함 합 니 다.

function actionFormatter(value, row, index) {
 return [
 
  '<a class="like" href="detail.html" rel="external nofollow" data-toggle="tooltip" title="  "><i class="glyphicon glyphicon-pencil"></i></a> ',
  '<a class="edit ml10" href="javascript:createAction()" rel="external nofollow" data-toggle="tooltip" title="    "><i class="glyphicon glyphicon-edit"></i></a> ',
 ].join('');
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기