20 Oct 2016
Link to this post
I have setup a rule to call a javascript function when a picklist combo box has changed. The code inside the js function is
if(args.get_item().get_text()=="United States"){
setControlValue(findControl('.CrmBoolean_C012'),true);
}else{
setControlValue(findControl('.CrmBoolean_C012'),false);
}
The value seems to be updatiing with the "setControlValue" function, but the radio button view is not updating. The value in the view seems to be what is pushed to CRM with in accurate information.
Scott