-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Value changing on checkboxes in Chrome #1125
Comments
Hi @aetna-wsa! I think different browsers treat the value of a check box input different. I would not use |
Thanks, Rob. I thought about that. However, on the same page that uses the |
I've had an app that has worked for a year or more... updating the latest version of "parser-input-select.js" rewrites the submitted value to "true" instead of the unique IDs that are configured in the form. The latest versions of Firefox Dev & Microsoft Edge don't rewrite the values to "true". If I remove the input-select plugin, the form fields are correctly submitted. |
Hmm, ok I'll take a look at the code again. |
Ok, the parser is fixed in the master branch. Sorry about that! |
Oh man, if this works you'll be on my Christmas list for 10 years! |
LOL, send me lots of virtual chocolate-chip cookies 😉 |
Thanks! I've just confirmed that the input parser update works and doesn't rewrite the checked checkbox values to "true". |
Confirmed here, too... thanks Rob! |
Both of those parsers are failing. |
Both? That file has six parsers:
I know the one you're having issues with is the |
Hi, Mottie - me again!
I have this strange problem that only occurs in Chrome. It seems that whenever one of the checkboxes (I only have one, per row) is checked, the value of the checkbox changes from the original one (the intended value which should remain) to "true" instead.
Unchecked (original) code:
<input type="checkbox" name="selected_reminder_uid" class="reasign" value="5310" unchecked>
After checking the box:
<input type="checkbox" name="selected_reminder_uid" class="reasign" value="true" checked>
Obviously, I need the value in the second line to remain "5310" instead of "true". Do you know why this is happening? When I render my pages without the tablesorter plugin, this behavior does not occur, even in Chrome (so there is something happening with TS that is doing this.)
The text was updated successfully, but these errors were encountered: