Replies: 1 comment
-
I had the same problem, the solution was to change the data type of the schema from Before
after
you can query with see here |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
the data in the database is stored like this:
{"ar":"\u0628\u063a\u062f\u0627\u062f","en":"Baghdad","kr":"\u0628\u06d5\u063a\u062f\u0627"}
and the datatable server side search like this:
{
"data": "name",
"name": "name",
"searchable": "true",
"orderable": "true",
"search": {
"value": "أربيل",
"regex": "false"
}
},
The problem is when looking for أربيل it's not found because of characters, this is the query from datatable
"query": "select
cities
.* fromcities
where LOWER(cities
.name
) LIKE ? andcities
.deleted_at
is null order byname
asc limit 25 offset 0",Beta Was this translation helpful? Give feedback.
All reactions