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
When we are updating our data(Name hometown) to the database we have to update in case sensitive manner otherwise when we showing in the UI it will be inappropriate. But when we search case sensitivity and additionally text spaces become a problem because at
in database reference it not search with user input's text spaces and it is case sensitive. We don't know user enter uppercase or lower case.
As a solution for that I had to create a new data entry called "name4search" for each user apart from name and other user information in database. We have to update lowercase and spaces free text to the "name4search". And then we can successfully use it for searching purposes.
The text was updated successfully, but these errors were encountered:
When we are updating our data(Name hometown) to the database we have to update in case sensitive manner otherwise when we showing in the UI it will be inappropriate. But when we search case sensitivity and additionally text spaces become a problem because at
.startAt(searchUsersETTxt).endAt(searchUsersETTxt+"\uf8ff")
in database reference it not search with user input's text spaces and it is case sensitive. We don't know user enter uppercase or lower case.
As a solution for that I had to create a new data entry called "name4search" for each user apart from name and other user information in database. We have to update lowercase and spaces free text to the "name4search". And then we can successfully use it for searching purposes.
The text was updated successfully, but these errors were encountered: