TypeError: Unable to get value of the property 'getCellsInExtent': object is null or undefined[\code]
I been trying to applyEdits to a feature and after I hit this error I cannot use the dojo.connect(layer, "onEditsComplete", function(add, updates, deletes)... to further update the featureTypeError: Unable to get value of the property 'getCellsInExtent': object is null or undefined[\code] any idea what causes this error?
the featLayer that your applying edits to...is it currently within visible scale range?
Last time I got that error, I believe that something was returning a null. It ended up that I commented out some dojo reference in an html tag.
Also, I am not really sure about your intent but perhaps using something like this would work better:
dojo.connect( layernamehere, "onBeforeApplyEdits", function( a,u,d) {
// do really cool stuff here
});