There is a two options field on my form. First, in onLoad method I have to set null my two options field (The default value is false). So I do;
Xrm.Page.getAttribute("new_iscall").setValue(null);
And It works fine. There is no value in two options field neither true or false. But when I click False, OnChange Event doesn't work. But if I click True, OnChange event works properly. Is there any way to trigger OnChange method with click on the False value?