Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
I would like to report a bug.
When you try to make the quicksearch 213+ in the quicksearch dialog, then Project'Or RIA does not take the + into account and replace it with a space.
Example :
Have a object with a field name = 213+.
Quicksearch 213 -> the object is found
Quicksearch 213+ -> the object is not found
Bye
Perhaps encodeURIComponent() in refreshJsonList() would do the trick.
Edit :
Yes it does.
url = url + "&objectType=" + encodeURIComponent(dijit.byId('listTypeFilter').get("value"));
For each lines
Hi,
Ticket #1105 has been recorded to include your fix in next version.
Thanks for your contribution.
You were almost there :
url = url + "&quickSearch=" + encodeURIComponent(dijit.byId('quickSearchValue').get("value"));
Others should not be necessary : they just concern boolean (idle) or integer (type) values.
Fix is included in V3.4