Full text search in datatable
Full text search in datatable
Hi,
I am Joby Joseph working in Oracle ADF. I am using datatable to display my list. I hane a small problem. In my list, search is applied only for the items that is currently present. If the number of rows is 10, search will do only from that 10 rows.
$(document).ready( function () {
$('table.x2f').append('Group order by(usually hidden)Call Pending NameMobile Res TelWork Tel-Ext NationalityCall Status ');
$('table.x2f').dataTable({ "bLengthChange": false, "bPaginate": false , "bSearchable": true})
.rowGrouping({ bExpandableGrouping: true,
iGroupingOrderByColumnIndex: 0,
iGroupingColumnIndex: 1});
});
This is the code that i am using to get datatable.
Can you plz look into this and tell me a suggestion to get the search woring in all my list.
Regards,
Joby Joseph
I am Joby Joseph working in Oracle ADF. I am using datatable to display my list. I hane a small problem. In my list, search is applied only for the items that is currently present. If the number of rows is 10, search will do only from that 10 rows.
$(document).ready( function () {
$('table.x2f').append('Group order by(usually hidden)Call Pending NameMobile Res TelWork Tel-Ext NationalityCall Status ');
$('table.x2f').dataTable({ "bLengthChange": false, "bPaginate": false , "bSearchable": true})
.rowGrouping({ bExpandableGrouping: true,
iGroupingOrderByColumnIndex: 0,
iGroupingColumnIndex: 1});
});
This is the code that i am using to get datatable.
Can you plz look into this and tell me a suggestion to get the search woring in all my list.
Regards,
Joby Joseph
This discussion has been closed.
Replies
Allan
I have added the code to debugger. Please check the code. Now the datatable displays full rows without any pagination.
Allan
http://debug.datatables.net/ekufiz
this is the debug code.
Allan
If we introduced pagination in the datatable, we are not suppose to search from next set of data in the table. the search will display only from the current avilabe rows only. So our client told us to display all the rows in one page and avoid pagination. So we displayed like this.
Allan
One more question. If I want to add any additional codes to get the filtering on all pages, if pagination is on?