You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The search doesn't work as expected for any of the themes available so far for date fields at the column list. More specifically Grocery CRUD is experiencing the following problem :
When we search with our date format for example: 22/04/2017 we are expecting to get all the dates of 22/04/2017 instead no results are returned
The main reason for that is that we will need to search with the following format YYYY-mm-dd for example: 2017-04-22. But even then we will have issues as the quick search is mainly looking with a LIKE. For example you can search all of the dates on 2017 by writing 2017 or if you would like to search all the dates of March 2017 you should write 2017-03. This is not very obvious for the end user and it is a bit also annoying to explain this situation to a customer but this is the work-around for now.
We will try to fix this problem so it will at least search by the date format of the user.
The text was updated successfully, but these errors were encountered:
The search doesn't work as expected for any of the themes available so far for date fields at the column list. More specifically Grocery CRUD is experiencing the following problem :
When we search with our date format for example:
22/04/2017
we are expecting to get all the dates of22/04/2017
instead no results are returnedThe main reason for that is that we will need to search with the following format
YYYY-mm-dd
for example:2017-04-22
. But even then we will have issues as the quick search is mainly looking with a LIKE. For example you can search all of the dates on 2017 by writing2017
or if you would like to search all the dates of March 2017 you should write2017-03
. This is not very obvious for the end user and it is a bit also annoying to explain this situation to a customer but this is the work-around for now.We will try to fix this problem so it will at least search by the date format of the user.
The text was updated successfully, but these errors were encountered: