function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BAGELBAGEL 

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);
    }


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