Я загружаю данные c и html таблицы
<table id="grid-filterFields" class="table table-condensed table-hover table-striped" style="table-layout:auto">
<thead id="grid-thead">
<tr>
<th data-column-id="id" data-identifier="true" data-type="numeric" ></th>
<th data-column-id="filterType">FilterType</th>
<th data-column-id="filterCondition">FilterCondition</th>
<th data-column-id="filterText">FilterBy</th>
<th data-column-id="filterClause">ADD/OR</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
После добавления строк в загрузочную сетку я хочу удалить строку из сетки.
Я пытался получить строки, используя
var rows=$("#grid-filterFields").bootgrid("getCurrentRows");
, что дает мне массив данных Json. Я хочу удалить указанную c строку, пожалуйста, дайте мне знать, как я могу это сделать. Я пытался с этим методом, но не повезло
var removedrows = [];
removedrows[0] = parseInt(2);//to remove 2 row in bootgrid
$("#grid-filterFields").bootgrid("remove", removedrows);