admin管理员组文章数量:1340291
I'm using bootstrap datatables in codeigniter project in footer i included this datatables js and initialized like
$('.datatable').dataTable({
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span12'i><'span12 center'p>>",
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page"
}
} );
Now i want custom filters in required list page on required column i tried as
<select id="s" name="s">
<option value="1">Hyd</option>
<option value="2">Warangal</option>
</select>
and js as
<script>
$(document).ready(function(){
$('#s').change( function() {
//alert($(this).val());
oTable.fnFilter( $(this).val(), 2 );
} );
});
</script>
I want to filter using drop downlist for city.
I'm using bootstrap datatables in codeigniter project in footer i included this datatables js and initialized like
$('.datatable').dataTable({
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span12'i><'span12 center'p>>",
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page"
}
} );
Now i want custom filters in required list page on required column i tried as
<select id="s" name="s">
<option value="1">Hyd</option>
<option value="2">Warangal</option>
</select>
and js as
<script>
$(document).ready(function(){
$('#s').change( function() {
//alert($(this).val());
oTable.fnFilter( $(this).val(), 2 );
} );
});
</script>
I want to filter using drop downlist for city.
Share Improve this question edited Feb 3, 2017 at 10:23 vijay kumar asked Feb 3, 2017 at 9:46 vijay kumarvijay kumar 3773 gold badges12 silver badges31 bronze badges2 Answers
Reset to default 10Hope this is what you looking for, fiddle
$(document).ready(function() {
var table = $('#example').DataTable();
$('#dropdown1').on('change', function () {
table.columns(1).search( this.value ).draw();
} );
$('#dropdown2').on('change', function () {
table.columns(2).search( this.value ).draw();
} );
});
Peace!
You can do this in this way :
$('.datatable').dataTable({
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span12'i><'span12 center'p>>",
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page"
},
initComplete: function() {
this.api().columns().every(function() {
$('#s').change(function() {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
column.search(val ? '^' + val + '$' : '', true, false).draw();
});
});
}
});
Source
本文标签: javascriptbootstrap datatable custom dropdown filtersStack Overflow
版权声明:本文标题:javascript - bootstrap datatable custom dropdown filters - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743630046a2512954.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论