BootstrapAdmin/Bootstrap.Admin/Scripts/Users.js

46 lines
1.5 KiB
JavaScript
Raw Normal View History

$(function () {
2016-10-24 19:12:22 +08:00
var bsa = new BootstrapAdmin({
url: '../api/Users',
dataEntity: new DataEntity({
map: {
ID: "userID",
UserName: "userName",
Password: "password",
DisplayName: "displayName"
}
})
});
$('table').smartTable({
url: '../api/Users', //请求后台的URL*
sortName: 'UserName',
queryParams: function (params) { return $.extend(params, { name: $("#txt_search_name").val(), displayName: $('#txt_display_name').val() }); }, //传递参数(*
columns: [{ checkbox: true },
2016-10-24 19:12:22 +08:00
{ title: "Id", field: "ID", events: bsa.idEvents(), formatter: BootstrapAdmin.idFormatter },
{ title: "登陆名称", field: "UserName", sortable: true },
{ title: "显示名称", field: "DisplayName", sortable: false }
]
});
// validate
$('#dataForm').autoValidate({
userName: {
required: true,
maxlength: 50
},
password: {
required: true,
maxlength: 50
},
confirm: {
required: true,
equalTo: "#password"
},
displayName: {
required: true,
maxlength: 50
}
});
//TODO: 客户端点击保存用户后,要更新页面右上角用户显示名称
});