Some letter are not matched when searching

Some letter are not matched when searching

krimiakrimia Posts: 3Questions: 1Answers: 0
edited March 2022 in Bug reports

Hello,

I use dataTable since 4years on my projects and today i have a very Strange issue with specific letters (for example b,d,h) and any numbers dont match.

see my illustration pic here in wich you can see that à "d" letter dont match any thing !!

Thank you for helping

Answers

  • kthorngrenkthorngren Posts: 20,142Questions: 26Answers: 4,736

    There could be many reasons for this. a basic default Datatables config doesn't exhibit this behavior. See this example. We will need more information.

    Are you suing client side or server side prociessing?

    If server side processing take a look at your server script as that is responsible for searching.

    If client side are you using any search plugins?

    Please post a link to your page or a test case replicating the issue so we can help debug.
    https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case

    Kevin

  • krimiakrimia Posts: 3Questions: 1Answers: 0

    Thanks for response.

    For context i do not use serverside but simple clientSide search with a standard search like this :

                        $('input', this.footer()).on('keyup change', function () {
                            if (that.search() != this.value) {
                                that
                                    .search(this.value)
                                    .draw();
    
                            }
                        });
    

    i have only localhost enveronement and i can give you a link but i will try to replicate my case on JSfiddle.

  • krimiakrimia Posts: 3Questions: 1Answers: 0

    I use a standard ClientSide Search like this

                    $('input', this.footer()).on('keyup change', function () {
                            if (that.search() != this.value) { 
                                that
                                    .search(this.value)
                                    .draw();
                            }
                        });
    

    I'm on localhost but i try to replicate on JSfiddle

Sign In or Register to comment.