javascript - Use SPServices UpdateListItems to set date in SharePoint 2013 - Stack Overflow

I cannot find a working solution to set a SharePoint 2013 list date using SPServices.I have done this

I cannot find a working solution to set a SharePoint 2013 list date using SPServices. I have done this multiple times for other column types, but I can't figure out the right format for dates. Here's what I'm doing:

var testdate = "2016-01-01 00:00:00";
$().SPServices({
    operation: "UpdateListItems",
    async: false,
    listName: "Requests",
    ID: 4,
    valuepairs: [["Due Date", testdate]],
    pletefunc: function (xData, Status) {
    }
});

I have also tried it with these test values, but nothing changes on my site:

var testdate = "2016-1-1 0:0:0";
var testdate = "2016-01-01T00:00:00Z";
var testdate = "2016-1-1T0:0:0Z";
var testdate = "2016-01-01T00:00:00";
var testdate = "2016-1-1T0:0:0";

Please let me know if there's another date format I should try, or if you see anything else wrong with this code. It works when I point to one of my text fields, so I'm pretty sure it's just the date format that's messing things up.

I cannot find a working solution to set a SharePoint 2013 list date using SPServices. I have done this multiple times for other column types, but I can't figure out the right format for dates. Here's what I'm doing:

var testdate = "2016-01-01 00:00:00";
$().SPServices({
    operation: "UpdateListItems",
    async: false,
    listName: "Requests",
    ID: 4,
    valuepairs: [["Due Date", testdate]],
    pletefunc: function (xData, Status) {
    }
});

I have also tried it with these test values, but nothing changes on my site:

var testdate = "2016-1-1 0:0:0";
var testdate = "2016-01-01T00:00:00Z";
var testdate = "2016-1-1T0:0:0Z";
var testdate = "2016-01-01T00:00:00";
var testdate = "2016-1-1T0:0:0";

Please let me know if there's another date format I should try, or if you see anything else wrong with this code. It works when I point to one of my text fields, so I'm pretty sure it's just the date format that's messing things up.

Share Improve this question edited Sep 17, 2015 at 17:56 greenbellpepper asked Sep 17, 2015 at 17:37 greenbellpeppergreenbellpepper 4222 gold badges8 silver badges14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 3

UpdateListItems operation expects date string to be provided in ISO 8601 format, for example:

var dueDateVal = new Date('2016-01-01 6:00:00').toISOString();
$().SPServices({
    operation: "UpdateListItems",
    async: false,
    listName: "Requests",
    ID: 1,
    valuepairs: [["DueDate", dueDateVal]],
    pletefunc: function (xData, Status) {
         console.log('List items has been updated');
    }
});

In addition, make sure the proper name of Due Date column is specified. UpdateListItems operation expects an array of column StaticNames and values have to be specified for valuepairs.

If column named Due Date has been created via UI, then Due_x0020_Date static name will be generated and the operation for setting its value the should be specified like this:

var dueDateVal = new Date('2016-01-01 6:00:00').toISOString();
$().SPServices({
    operation: "UpdateListItems",
    async: false,
    listName: "Requests",
    ID: 1,
    valuepairs: [["Due_x0020_Date", dueDateVal]],
    pletefunc: function (xData, Status) {
         console.log('List items has been updated');
    }
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745287492a4620650.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信