Multi-edit urlencode #660

This commit is contained in:
jokob-sk
2024-05-09 07:53:43 +10:00
parent 9007658e40
commit 645a4e68f0
3 changed files with 6 additions and 3 deletions

View File

@@ -256,7 +256,7 @@
columnValue = inputElement.is(':checked') ? 1 : 0;
} else {
// For other input types (like textboxes), simply retrieve their values
columnValue = inputElement.val();
columnValue = encodeURIComponent(inputElement.val());
}
var targetColumns = inputElement.attr('data-my-targetColumns');