This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
OS:Win 2003 DB:Sqlite Version:2.3.0.8
Hi Joe
Below code in file SmartCombo.js:
//////////////////////////////////////////////////////
SmartCombo.prototype.GetData = function() { ... var xmlhttp = new XMLHttpRequest(); xmlhttp.open("GET", this.oUrl + this.query, false); ... }
should be
SmartCombo.prototype.GetData = function() { ... var xmlhttp = new XMLHttpRequest(); xmlhttp.open("GET", this.oUrl + encodeURIComponent(this.query), false); ... }
/////////////////////////////////////////////
for Chinese words.
Thanks!
Hi,
Thanks for the bug report and fix. I will apply this to my copy.
Best,
Joe