NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: alex.kolaric on August 09, 2010, 12:22:19 PM
-
Hi,
I have an issue where EIP is not updating table field if it contains # character. Since part numbers for our users contain # it is quite an issue for us. When I remove # from the field EIP saves the changes correctly. Can anyone confirm? Is there any workaround?
thanks,
Alex
-
Hi Alex,
I've duplicated, and fixed the problem for PR 29. That should go up today.
The problem is in the JavaScript file, so it's a tricky one for you to fix there - especially if you're not familiar with using the Gzipall Batch file to combine & compress the files.
If you are familiar with using GzipAll then the error is in netweb.js
around line 904 you should see 2 lines of code
ans = ans.replace(/%/,"%25");
ans = ans.replace(/&/,"%26");
after these add a third line
ans = ans.replace(/#/,"%23");
Cheers
Bruce
-
Hi Bruce,
many thanks for the fix.
Regards,
Alex