Coding Logic Is Messed UP

Coding Logic Is Messed UP

Hi Support,

It seems that the coding logic in the zoho creator is messed up.  The logic that was once worked no longer work.  An example of the following code was placed under ON User Input:

//If it's To-Do Activity, he all unrelevant fields
if (input.Category  !=  "To-Do Item")
{
     hide Billable;
    hide Client;
    hide Lead;
    hide Professional;
    hide Contact;
    hide Assigned_To;
    hide Start_DateTime;
    hide End_DateTime;
    hide Hourly_Rate;
    hide Misc_Cost;
}
else
{
    show Billable;
    show Lead;
    show Client;
    show Professional;
    show Contact;
    show Assigned_To;
    show Start_DateTime;
    show End_DateTime;
    show Hourly_Rate;
    show Misc_Cost;
}

























Thus, when a To-Do Item is selected, the system hide all the fields listed in the code, otherwise it shows all the fields. But now it no longer does that; it won't hide the fields anymore.  This code is in the Senior Move Business Management System under New Activity form.  I'll share this app w/ support. 

Beside this issue, I'll also has other coding problems, but it seems that the coding logic ==/!= is not working properly.

Please advise asap.

Thanks.