Sharepoint 2013 列表日期时间选择器 select 年
sharepoint 2013 list datetime picker select year
我想在 sharepoint 列表日期选择器列中添加年份选项,因为它不允许选择年份,除非交换 12 个月后有人可以提出建议吗?
没有此选项,请改用 jQuery Datapicker。
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
})
更新:
将脚本插入您的列表表单(新 forum/edit 表单),将 "Time" 更新为您的字段标题。
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script type="text/javascript">
$(document).ready(function () {
$('input[title="Time"]').datepicker({
changeMonth: true,
changeYear: true
})
$('input[title="Time"]').parent().siblings().hide();
});
</script>
我想在 sharepoint 列表日期选择器列中添加年份选项,因为它不允许选择年份,除非交换 12 个月后有人可以提出建议吗?
没有此选项,请改用 jQuery Datapicker。
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
})
更新:
将脚本插入您的列表表单(新 forum/edit 表单),将 "Time" 更新为您的字段标题。
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script type="text/javascript">
$(document).ready(function () {
$('input[title="Time"]').datepicker({
changeMonth: true,
changeYear: true
})
$('input[title="Time"]').parent().siblings().hide();
});
</script>