Update input values inside responsive table

Update input values inside responsive table

MikyMiky Posts: 1Questions: 1Answers: 0

I've a datable with responsive active.

Inside a column i've an input field. When i change it, it update automatically 1 or more input fields inside others column.

Now if i've a large screen and responsive is not active, all works ok.
But if i've a small screen and responsive is triggered, i've problem: input field OUTSIDE the screen are losing it's value.

Any one with the same issue, please help.

Answers

  • kthorngrenkthorngren Posts: 20,534Questions: 26Answers: 4,816

    When i change it, it update automatically 1 or more input fields inside others column.

    How are you doing this? Can you build a simple test case showing what you are doing so we can help debug?
    https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case

    If you are using jQuery or Javascript methods to update the cells then the cells hidden by responsive won't be found with the same selectors. Maybe use cell().node() to update the cells.

    Kevin

  • allanallan Posts: 62,205Questions: 1Answers: 10,203 Site admin

    Also, make sure you are using the listHiddenNodes renderer, so the elements are moved around rather than cloned (which would loose the value).

    Failing that, then, as Kevin says (and the forum rules state), we'd need a test case showing the issue.

    Allan

Sign In or Register to comment.