2017-09-12 7 views
0

私のテーブルにIDの1つを与えるこのコマンドを使用しようとしましたが、動作していません。removeByUniqueIdがブートストラップテーブルで動作していませんか?

$table.bootstrapTable('removeByUniqueId', "ID"); 


$("#deleteUrl").click(function() { 
    alert("Handler for .click() called."); 
    $('#servicetable').bootstrapTable('removeByUniqueId', "test"); 
}); 

ここで#deleteUrl is my delete button ID and "test" is one of the ID'sは私のテーブルにあります。

私はこの構文のために事前に

http://issues.wenzhixin.net.cn/bootstrap-table/#methods/removeByUniqueId.html

おかげで、このリンクを参照さ!!

答えて

0

このようにしました。 テーブルにdata-unique-id="My-id"を追加しました。

<table class="table-striped" id="servicetable" data-unique-id="hostname" data-search="true" data-show-refresh="true" data-show-columns="true" data-pagination="true" > 

私は一意である私のテーブルで、このMy-idを持っています。

これにアクセスして行を削除してください。 最終的に私はやった!

$table.bootstrapTable('removeByUniqueId', "DEMO UPGRADE"); 
関連する問題