I have a search-bar in my application, And i'm not to sure what the best practice is?
Is it First Upper, Rest Lower. All Lower, All Upper
And what is the best way to Approach First upper, Rest Lower?
Filtering my Listview in relation to the Search Text, In my Context I have Suppliers Submitting there own Name's and alot of the time's I end up with, E.G SUPPLIER1 Supplier2 supplier3 SUPplier4 Type of situations
if (string.IsNullOrWhiteSpace(e.NewTextValue))
productsListView.FlowItemsSource = Tags;
else
productsListView.FlowItemsSource = Tags
.Where(i => i
.name
.ToLower()
.Contains(e.NewTextValue))
.ToList();
If I say something like
First().ToString().ToUpper().ToLower()
I'm just dropping The first to a lower again.
I'm curious as with IOS devices you usually have the first letter Uppercase, And for less technical clients it's better to Cater for that is it not?