0
열이 하나도 읽을 수없는 것으로 표시되도록 부트 스트랩 테이블과 함께 할 수있는 방법이 있습니까? I.E. #### not 1234 제 설정에서 아래의 방법을 사용하면 도움이 될 것입니다. 이것은 보안 문제가 아니라 단지 미학적 인 것입니다. 많은 감사합니다.부트 스트랩 테이블 암호 열이 해시
var optionsuser = {
filterControl: true,
showRefresh: true,
search: true,
pagination: true,
filter: true,
striped: true,
url: "php/api.php",
queryParams: queryParamsuser,
columns: [{
field: "id",
title: "Id"
},
{
field: "username",
title: "Username",
filterControl: 'select',
sortable: true,
filterStrictSearch: false
},
{
field: "password",
title: "Password"
}
],
};
var $table = $('#table').bootstrapTable(optionsuser),
$modal = $('#modal').modal({show: false}),
$alert = $('.alert').hide();
$table.bootstrapTable('hideColumn', 'id');