Как мне получить описание поля / столбца с помощью SPServices?
$().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.