Why this descerpancy ??????

Why this descerpancy ??????

@ ZOHO Creator Team:

This is case-sensitive (only counts records where field Last_Name starts with EXACT value of Client_Last_Name) ...

     
  1. matches = count(ClientInfo[LastName.startsWith(input.Client_Last_Name)]);
  2. alert(matches);
... but this is not  (counts records where field Last_Name starts with UPPER/LOWER cased value of Client_Last_Name) ...
     
  1. baseURL = (("http://creator.zoho.com/" + zoho.adminuser) + "/") + zoho.appname;
  2. thisURL = baseURL + "/#View:gkMatchingClients?LastName=" + input.Client_Last_Name + "&LastName_op=24";
  3. openUrl(thisURL, "same window");

Why the descerpancy ??????


Gaev