首頁  >  文章  >  web前端  >  datagrid框架的刪除新增與修改_jquery

datagrid框架的刪除新增與修改_jquery

WBOY
WBOY原創
2016-05-16 17:38:101275瀏覽

複製程式碼 程式碼如下:






擴充editor方法:datetimebox

複製程式碼 程式碼如下:

$(function () {


$(function) {
/*擴充Editors的datetimebox方法*/
$.extend($.fn.datagrid.defaults.editors, {
datetimebox: {//為方法取名
init: function (container, options) {
var editor = $('').appendTo(container);
options.editable = false;//設定其不能手動輸入
editor.datetimebox(options);
return editor ;
},
getValue: function (target) {//取值
return $(target).datetimebox('getValue');
},
setValue: function (target, value) {//設定值
$(target).datetimebox('setValue', value);
},
resize: function (target, width) {
$(target).datetimebox ('resize', width);
},
destroy: function (target) {
$(target).datetimebox('destroy');//銷毀生成的panel
}
}
});});

圖示:

 
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn