59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>updateByUniqueId</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
|
|
<link rel="stylesheet" href="../assets/examples.css">
|
|
<script src="../assets/jquery.min.js"></script>
|
|
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
|
|
<script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
|
|
<script src="../ga.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>updateByUniqueId</h1>
|
|
<p>
|
|
Update the specified row, the param contains following properties: <br>
|
|
id: a row id where the id should be the uniqueid field assigned to the table. <br>
|
|
row: the new row data.
|
|
<code>$table.bootstrapTable('updateByUniqueId', {id: 3, row: row});</code>
|
|
</p>
|
|
<div id="toolbar">
|
|
<button id="button" class="btn btn-default">updateByUniqueId</button>
|
|
</div>
|
|
<table id="table"
|
|
data-toggle="table"
|
|
data-toolbar="#toolbar"
|
|
data-height="428"
|
|
data-unique-id="id"
|
|
data-url="../json/data1.json">
|
|
<thead>
|
|
<tr>
|
|
<th data-field="id">ID</th>
|
|
<th data-field="name">Item Name</th>
|
|
<th data-field="price">Item Price</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<script>
|
|
var $table = $('#table'),
|
|
$button = $('#button');
|
|
|
|
$(function () {
|
|
$button.click(function () {
|
|
var randomId = 100 + ~~(Math.random() * 100);
|
|
$table.bootstrapTable('updateByUniqueId', {
|
|
id: 3,
|
|
row: {
|
|
name: 'Item ' + randomId,
|
|
price: '$' + randomId
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |