Link to home
Start Free TrialLog in
Avatar of rivkamak
rivkamakFlag for United States of America

asked on

jquery datable hidden section doesn't submit

I have a table on my page that is designed from the jquery datatable UI. I have 100 rows, only showing 10 at a time.

In my rows, I have an input field on each row, with the id that increments on each line.
<tr id="rowname2" name="rowname2">
              <td>1999</td>
              <td>Audi</td>
              <td>A6</td>
               <input type="text" name="changed2" id="changed2" />
            </td>
        </tr>

Open in new window


i have the whole table surrounded by a form.

When I submit the form, I only get the fields from 1-10. I don't get anything from the next tab of the table?
how can I access all the information?
ASKER CERTIFIED SOLUTION
Avatar of zephyr_hex (Megan)
zephyr_hex (Megan)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Julian Hansen
Can you show us some source code?