You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After calling something like:
$("input", row).link(rowData);
The rowData object will get a member like jQuery15109948021615406466 which points to an object. I believe this object is used to manage the link.
Calling unlink or removing the input from the dom does NOT remove the member.
$("input", row).unlink(rowData); // jQuery15109948021615406466 still exists
I'm running into issues with getting some data via json, binding to a form, changing the data, then attempting to send it back to the client but failing because of these extra members.
The text was updated successfully, but these errors were encountered:
After calling something like:
$("input", row).link(rowData);
The rowData object will get a member like jQuery15109948021615406466 which points to an object. I believe this object is used to manage the link.
Calling unlink or removing the input from the dom does NOT remove the member.
$("input", row).unlink(rowData); // jQuery15109948021615406466 still exists
I'm running into issues with getting some data via json, binding to a form, changing the data, then attempting to send it back to the client but failing because of these extra members.
The text was updated successfully, but these errors were encountered: