作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要两个不同的事情发生在这个数据表上:
一:我需要将 From 和 To 日期选择器输入添加到我的数据表的标题中,其中包括 bJQueryUI。我发现了这个讨论,http://datatables.net/forums/discussion/comment/16235但正如您在我的 fiddle 中看到的那样,我的输入仍未添加到标题中。下面还有示例代码。
二:在这些输入中单击时,日期选择器小部件会显示并允许您选择日期。我需要在特定日期之间过滤表格。正如您在此示例中所见,我包含了 10 月 1 日至 7 日,但也许我想在 10 月 4 日至 6 日之间过滤掉它。因此,在更改 To 输入时,表格应相应地进行过滤。有任何想法吗?提前致谢。
jQuery
$('#example').dataTable({
"sDom": 'R<C><"process_status">T<"clear"><"ui-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix"lfr>t<"ui-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix"ip>',
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"aLengthMenu": [
[5, 10, 15, 20, -1],
[5, 10, 15, 20, "All"]
],
"iDisplayLength": 10
});
$(".process_status").html("From <input type='text' class='datepick' /> <span class='icoMoon icon-calendar-10 icon-set delBlue' title='Revert'></span> To <input type='text' class='datepick' /> <span class='icoMoon icon-calendar-13 icon-set delBlue' title='Revert'></span>");
最佳答案
您可以使用我的 Yet Another DataTables Column Filter - (yadcf)插件,
像这样使用 filter_type
属性:
filter_type: "range_date"
同时检查 date_format
属性,以防您需要不同于默认格式的日期格式 mm/dd/yyyy
关于javascript - 如何向 Datatables header 添加其他过滤器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19549952/
我是一名优秀的程序员,十分优秀!