0

I am creating a new list item using CSOM. When I try updating a Person field, I'm getting a error saying my function is undefined

Uncaught ReferenceError: createListItem is not defined

it happens with the introduction of this line:

SP.User _newUser = clientContext.Web.EnsureUser("domain\\user");

Isn't this part of Sp.js? I have this imported along with sp.core.

1 Answer 1

1

Try this

var context = SP.ClientContext.get_current();
var theUser = context.get_web().ensureUser("DEV\testowner");
context.load(theUser);

context.executeQueryAsync(function(){
    //Create list item here
},
function(sender, args){
  alert(args.get_message());
});
1
  • perfect! I just needed to add an extra backslash and it worked thanks Amal. ("DEV\\testowner") Commented Oct 30, 2014 at 17:17

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.