Yet Another thing Broken ...

Yet Another thing Broken ...

I am building a Stateless Form for another Client ... here is the code I have entered for a Button ...



if ((input. MyCallsPerDay  ==  null)  ||  (input. MyCallsperDay  ==  0))
{
    alert("Calls Per Day is Zero or Unspecified");
}
else if ((input.ApmntsPerWeek  ==  null)  ||  (input.ApmntsPerWeek  ==  0))
{
    alert("Appointments Per Week is Zero or Unspecified");
}
else
{
    CurConvertPercent = (input.ApmntsPerWeek  /  (input.MyCallsPerDay  *  5));
    CurConvertPercent = CurConvertPercent.round(1);
    alert(CurConvertPercent);
}













... I can save it just fine ... but if I switch to Script Builder (or Run the Application) ... it changes it to ...


if ((input.ApmntsPerWeek  ==  null)  ||  (input.ApmntsPerWeek  ==  0))
{
    alert("Calls Per Day is Zero or Unspecified");
}
else if ((input.ApmntsPerWeek  ==  null)  ||  (input.ApmntsPerWeek  ==  0))
{
    alert("Appointments Per Week is Zero or Unspecified");
}
else
{
    CurConvertPercent = (input.ApmntsPerWeek  /  (input.MyCallsPerDay  *  5));
    CurConvertPercent = CurConvertPercent.round(1);
    alert(CurConvertPercent);
}













No error messages ... and notice how it only changes the field name in one place but not the other !!!

I have renamed the field, deleted and recreated the field, tried changing it via "script with Action" ... each time it changes it.


This is getting ridiculous ... in the last month I have spent twice as much time investigating and reporting defects in ZOHO Creator than doing actual billable work.

Enough already ... ZOHO Creator get your act together ... time to provide a reliable platform ... somebody fix this fast !!!!


Gaev