Hi all
In my project , we have to do sorting of the content based on the Japanese title. We are sorting the results using orderby predicate, but I am skeptical. I am not sure if it is really doing the sorting of the Japanese . Has anyone worked on a similar requirement and was able to do the sorting ?
Thanks
Veena
Solved! Go to Solution.
Views
Replies
Total Likes
Query Builder should work on Japanese characters.
Might need to change the querybuilder API parameters as below.
parms.put("property", "key");
parms.put("property.value","%"+value+"%");
parms.put("property.operation", "like");
Query Builder should work on Japanese characters.
Might need to change the querybuilder API parameters as below.
parms.put("property", "key");
parms.put("property.value","%"+value+"%");
parms.put("property.operation", "like");
Thanks @kautuk_sahni . Will check that
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies