2016-12-03 138 views
0

是否有一種方式與引導表有一列顯示密碼爲不可讀? I.E. ####不是1234 我的設置使用下面的方法,任何幫助都會很棒。 這不是安全問題,它只是美學。 非常感謝bootstrap-table密碼列散列

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'); 

回答