bootstrap table實現(xiàn)單擊單元格可編輯功能
更新時間:2017年03月28日 10:13:24 作者:dtable
這篇文章主要為大家詳細介紹了bootstrap table實現(xiàn)單擊單元格可編輯功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
要使bootstrap-table實現(xiàn)可編輯,需要配合使用x-editable插件。
先在頁面上導(dǎo)入必要的css和js文件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>bootstrap-table demo</title>
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" rel="external nofollow" >
<!-- Bootstrap table -->
<link rel="stylesheet" href="bootstrap-table-1.11.0/bootstrap-table.css" rel="external nofollow" >
<!-- x-editable -->
<link rel="stylesheet" href="x-editable/bootstrap3-editable/css/bootstrap-editable.css" rel="external nofollow" >
</head>
<body>
<div class="container">
<p></p>
<table id="table" class="table table-bordered table-hover">
</table>
</div>
<!-- jQuery 2.2.0 -->
<script src="jQuery-2.2.0.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- bootstrap table -->
<script src="bootstrap-table-1.11.0/bootstrap-table.js"></script>
<script src="bootstrap-table-1.11.0/extensions/editable/bootstrap-table-editable.js"></script>
<script src="x-editable/bootstrap3-editable/js/bootstrap-editable.js"></script>
<script src="bootstrap-table-1.11.0/locale/bootstrap-table-zh-CN.min.js"></script>
<script type="text/javascript">
$(function(){
$('#table').bootstrapTable({
url:'data.json',
columns:[
{field: 'id',title: 'ID'},
{field: 'name',title: '名稱'},
{field: 'price',title: '單價'},
{field: 'number',title: '數(shù)量', sortable:true,
cellStyle:function(value,row,index) {
return {
"css":{
padding:'0px'
}
};
},
formatter:function(value,row,index){
if(value == undefined) return "0";
else return value;
},
editable:{
type:'text',
clear:false,
validate:function(value){
if(isNaN(value)) return {newValue:0, msg:'只允許輸入數(shù)字'};
else if(value<0) return {newValue:0, msg:'數(shù)量不能小于0'};
else if(value>=1000000) return {newValue:0, msg:'當(dāng)前最大只能輸入999999'};
},
display:function(value){
$(this).text(Number(value));
},
//onblur:'ignore',
showbuttons:false,
defaultValue:0,
mode:'inline'
}
},
{field:'amount', title: '總價'}
],
//height:300,
idField:'id',
onEditableHidden: function(field, row, $el, reason) { // 當(dāng)編輯狀態(tài)被隱藏時觸發(fā)
if(reason === 'save') {
var $td = $el.closest('tr').children();
$td.eq(-1).html((row.price*row.number).toFixed(2));
$el.closest('tr').next().find('.editable').editable('show'); //編輯狀態(tài)向下一行移動
} else if(reason === 'nochange') {
$el.closest('tr').next().find('.editable').editable('show');
}
}
});
$('#table').on( 'click', 'td:has(.editable)', function (e) {
//e.preventDefault();
e.stopPropagation(); // 阻止事件的冒泡行為
$(this).find('.editable').editable('show'); // 打開被點擊單元格的編輯狀態(tài)
} );
});
</script>
</body>
</html>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
bootstrap paginator分頁插件的兩種使用方式實例詳解
Bootstrap Paginator是一款基于Bootstrap的js分頁插件,下面通過本文給大家介紹bootstrap paginator分頁插件的兩種使用方式,一起看看吧2017-11-11
原生javascript+css3編寫的3D魔方動畫旋扭特效
這篇文章主要介紹了原生javascript+css3編寫的3D魔方動畫旋扭特效的相關(guān)資料,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-03-03
JavaScript實現(xiàn)輕松創(chuàng)建二維數(shù)組的方法小結(jié)
這篇文章主要為大家詳細介紹了JavaScript中實現(xiàn)輕松創(chuàng)建二維數(shù)組的多種方法,文中的示例代碼講解詳細,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2024-04-04
Bootstrap基本插件學(xué)習(xí)筆記之Popover提示框(19)
這篇文章主要為大家詳細介紹了Bootstrap基本插件學(xué)習(xí)筆記之Popover提示框的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-12-12
Mock.js的安裝與使用教程(擺脫后端同學(xué)的束縛)
Mock功能可以根據(jù)接口/數(shù)據(jù)結(jié)構(gòu)定義、Mock規(guī)則配置、Mock?期望配置,自動生成模擬數(shù)據(jù),且使用者可以根據(jù)需要靈活構(gòu)造各種結(jié)構(gòu)的接口數(shù)據(jù),下面這篇文章主要給大家介紹了關(guān)于Mock.js的安裝與使用的相關(guān)資料,需要的朋友可以參考下2022-08-08

