简体   繁体   中英

JQuery Datatables not searching by hidden value

I have a datatable that contains inputs of type hidden that is in the first td element.

The problem when I type the value in the search bar it doesn't pick it up. It works fine on my local computer, but on the live version it doesn't work.

I checked several times and all the code is exactly the same. All the other functions of the datatable works perfectly. It searches fine on the visible values.

Here is an example. If i search for the hidden value '12345' it wont work on live:

<table id="merchant-table" class="table table-striped table-bordered table-hover">
        <thead>
            <tr>
              <th>Name</th>
              <th>Surname</th>
            </tr>
        </thead>
        <tbody>
             <tr>
               <td>John</td>
               <td>Doe <input type='hidden' value='12345'/></td>
             </tr>
        </tbody>
</table>

Any ideas?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM