Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
How to programmatically clear search textfield inside a Jquery Datatable

In my Page there are multiple jquery datatbles.I want to programmatically reset search textfield inside one of the Jquery Datatable.

  var dtTaskEmployee= $('#tblEmployee').DataTable({});
  $('#modalEmployeeDetails').on('hidden.bs.modal', function () {
     $('input[type=search]').val('');
     dtTaskEmployee.search('').draw();
  })

But this one cleares all the search fields inside all the datatble. I want to clear the search input field inside dtTaskEmployee. Can anyone help on this

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

$('input[type=search]').val(''); will clear all search fields so you want to limit this to #tblEmployee only.

var dtTaskEmployee= $('#tblEmployee').DataTable({});
$('#modalEmployeeDetails').on('hidden.bs.modal', function () {
   $('#tblEmployee_filter input[type=search]').val('');
   dtTaskEmployee.search('').draw();
})
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!