Hello, When i create a link inside cell, search doesn't work as expected. You can see the problem here by clicking on "select" field under "Position" title. How can i fix this, maybe changing the regular expression?
This question has an accepted answers - jump to answer
I think all you need to do is change this:
column.data().unique().sort().each( function ( d, j ) { select.append( '<option value="'+d+'">'+d+'</option>' )
Modify d by removing all but the text portion of your link.
d
Kevin
Yes, problem was with "d" var, so i modified it in case it includes <a>. Thank you for your reply!
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
I think all you need to do is change this:
Modify
d
by removing all but the text portion of your link.Kevin
Yes, problem was with "d" var, so i modified it in case it includes <a>.
Thank you for your reply!