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

151
Views
Get Row Data from Data table having a column as input field

I have a datatable with a column with an input field. To get the data from table I'm using:

table.rows().data().toArray();

I'm getting the result array, but for the column with input field I'm getting the whole html of input field and not just the value. eg. '<input type="text" value="someValue"></input>'

How can I manipulate the code to get the value of input in result array?

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

0

table
  .rows()
  .data()
  .toArray()
  .map((el) => {
   if(el.includes('<input')){
    return el.split('value="')[1].split('"')[0]
   }
  })
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!