SPServices not working

Discussions about Forms Designer for SharePoint 2013 / 2016 and Office 365.
Locked
gleegeld
Posts: 13
Joined: Tue Jun 30, 2015

05 Apr 2016

Hello,

I added watermark text using the example from the forum (works great) however adding the watermark text has cause SPServices to no longer work. What do I need to change to get SPServices working again?

Thanks

window.$ = $;
window.jQuery = $;
RegisterSod('watermark.js', '/SiteAssets/js/jquery.watermark.min.js');
LoadSodByKey('watermark.js', null, true);
fd.field('Extension').control()._el().find('textarea').watermark('Example: ');
fd.field('Status').control()._el().find('textarea').watermark('Examples: ');
var query = "<Query><Where><Eq><FieldRef Name='Author' LookupId='TRUE' /><Value Type='Integer'><UserID Type='Integer'/></Value></Eq></Where></Query>";
window.$().SPServices({
operation: "GetListItems",
async: false,
listName: "Closing",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>",
CAMLRowLimit: 1,
CAMLQuery: query,
completefunc: function (xData, Status) {
totalItems = parseFloat(window.$(xData.responseXML).SPFilterNode("rs:data").attr("ItemCount"));
alert('here ' + totalItems);
if (totalItems > 0) {
window.$(xData.responseXML).SPFilterNode("z:row").each(function () {
});
}
}
});

User avatar
rostislav
Moderator
Posts: 364
Joined: Mon Oct 19, 2015

06 Apr 2016

Your problem seems to be the fact that you're utilizing two jquery functions on your page.

Easiest, but a hacky thing to do is the following.

Try doing this:

Code: Select all

var spServicesjQuery = window.$ || window.jQuery;

window.$ = $;
window.jQuery = $;

RegisterSod('watermark.js', '/SiteAssets/js/jquery.watermark.min.js');
LoadSodByKey('watermark.js', null, true);

fd.field('Extension').control()._el().find('textarea').watermark('Example: ');

fd.field('Status').control()._el().find('textarea').watermark('Examples: ');

var query = "";

spServicesjQuery().SPServices({
	....
});
But best thing still would be to edit the watermark script so that it utilizes Plumsail.FD.jQuery.

gleegeld
Posts: 13
Joined: Tue Jun 30, 2015

07 Apr 2016

The changes you suggested give me an error

Object doesn't support property or method 'SPFilterNode'

User avatar
rostislav
Moderator
Posts: 364
Joined: Mon Oct 19, 2015

08 Apr 2016

Replace

Code: Select all

window.$(xData.responseXML)
with

Code: Select all

spServicesjQuery(xData.responseXML)

Locked
  • Information
  • Who is online

    Users browsing this forum: No registered users and 18 guests