In my project I've created a dataTable, Everything is working fine except one particular case.
While performing searching, my datatable is also searching the text inside the href with in the anchor tag. But i don’t want to consider this case.
http://datatables.net/examples/advanced_init/html_sort.html
EDIT:
i know if i use sType="html" and version(v 1.9.0) as suggested by DataTable 1.9.3 searching issue - prevent Data Table from considering href value - it is resolved
but i want custom sorting by dataTables sorting plug-in that column, so is it possible to use sType="html" which will strip HTML tags from a search string, and my custom sorting plugin together, is it possible to have multiple sType defined for one column's sType?
consider this link, it use dataTables sorting plug-in for sorting,
http://datatables.net/release-datatables/examples/plug-ins/sorting_sType.html
in that example how can i use sType="html" so my datatable do not search the text inside the href with in the anchor tag.
Hope you understood my issue. Any help will be much appreciated.
I'm using version DataTable 1.9.4 because in lower version i got error regarding dataTables sorting plug-in.