You need to sign in to do that
Don't have an account?

Sforce.Dynabean IE and Firefox
Hi there,
I ran into a problem with Sforce.Dynabean. I have a function that create a custom object and save it. It works in Firefox, but it doesn't save in IE, but also doesn't give an error. Any ideas? (btw. it works fine in both browsers before I managed the package)
var objCustom = new Sforce.Dynabean("CustomObj__c");
//... populate some fields...
var saveResults = sforceClient.create([objCustom])[0];
if(saveResults.success){
}else{
alert(saveResults);
}
I ran into a problem with Sforce.Dynabean. I have a function that create a custom object and save it. It works in Firefox, but it doesn't save in IE, but also doesn't give an error. Any ideas? (btw. it works fine in both browsers before I managed the package)
var objCustom = new Sforce.Dynabean("CustomObj__c");
//... populate some fields...
var saveResults = sforceClient.create([objCustom])[0];
if(saveResults.success){
}else{
alert(saveResults);
}

Nevermind, I found the problem. I was missing a require field. Thanks anyway.