SPServices not working
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 () {
});
}
}
});
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 () {
});
}
}
});
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:
But best thing still would be to edit the watermark script so that it utilizes Plumsail.FD.jQuery.
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({
....
});
Replace
with
Code: Select all
window.$(xData.responseXML)
Code: Select all
spServicesjQuery(xData.responseXML)
-
- Information
-
Who is online
Users browsing this forum: No registered users and 18 guests