Столбец SPServices Описание - PullRequest
0 голосов
/ 26 мая 2020

Как мне получить описание поля / столбца с помощью SPServices?

enter image description here

$().SPServices({
        operation: "GetListItems",
        async: true,
        listName: "CustomListName",
        completefunc: function (xData, Status) {
            var desc = $(this).attr("ows_Title") ..... 
            console.log(desc)
        }
});

Вывод: Title of your list item here.

...