我在我的 PHP 站点中使用 jQuery jTable来显示表格并向表格添加记录/修改记录。
我很少有具有时间值的字段。不幸的是,jTable 只支持日期选择器,而不支持时间选择器。谁能建议如何将 jQuery timepicker 添加到 jTable 中?
我尝试在主 JTable.js 文件中添加几个 JQuery Time Picker。但我认为我添加错误。由于我是 jquery 新手,我不知道如何添加 JQuery Time Picker Plugin
<div id="ShiftTableContainer" style="width: 600px;"></div>
<script type="text/javascript">
$(document).ready(function () {
//Prepare jTable
$('#ShiftTableContainer').jtable({
title: 'Shift',
actions: {
listAction: '../m/ShiftActions.php?action=list',
createAction: '../m/ShiftActions.php?action=create',
updateAction: '../m/ShiftActions.php?action=update',
deleteAction: '../m/ShiftActions.php?action=delete'
},
fields: {
id: {
title: 'Shift Id',
width: '25%'
},
name: {
title: 'Shift Name',
width: '40%'
},
start_time: {
title: 'Start Time',
width: '75%',
input: function (data) {
var dt = data.record ? data.record.start_time : NULL;
return '<input type="text" style="width:200px" value="' + dt + '" />';
}
inputClass: 'timepicker'
},
end_time: {
title: 'End Time',
width: '75%',
//options: { '1': '101', '2': '102' }
},
description: {
title: 'Description',
width: '75%'
},
color: {
title: 'Color',
width: '75%',
//options: { '1': '101', '2': '102' }
},
break_schedule: {
title: 'Break Schedule',
width: '75%',
}
}
});
$('#ShiftTableContainer').jtable('load');
});
</script>
<script>
$(function(){
$("input.timepicker").datetimepicker();
});
</script>