Forum

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.

QuickSearch replace...
 
Notifications
Clear all

QuickSearch replaces some caracters with blank

4 Posts
2 Users
0 Reactions
3,084 Views
LEVA
 LEVA
(@leva)
Posts: 54
Active Member
Topic starter
 
[#1204]

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


 
Posted : 10 Jun 2013 17H23
LEVA
 LEVA
(@leva)
Posts: 54
Active Member
Topic starter
 

Perhaps encodeURIComponent() in refreshJsonList() would do the trick.

Edit :

Yes it does.

url = url + "&objectType=" + encodeURIComponent(dijit.byId('listTypeFilter').get("value"));

For each lines


 
Posted : 10 Jun 2013 17H50
babynus
(@babynus)
Posts: 14953
Main Contributor Admin
 

Hi,

Ticket #1105 has been recorded to include your fix in next version.

Thanks for your contribution.


 
Posted : 13 Jun 2013 12H20
babynus
(@babynus)
Posts: 14953
Main Contributor Admin
 

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


 
Posted : 13 Jun 2013 14H41
Share:

Scroll to Top