Quantcast
Channel: jQuery Library for SharePoint Web Services
Viewing all articles
Browse latest Browse all 6517

New Post: Dynamic CAMLQuery

$
0
0

Marc,

Thank you for a wonderfully written library! Thought I would contribute back to your library,  be nice if you add it to your next release:

I wanted to be able to add a CAMLQuery dyanmically to the autocomplete function. Here is the use case: I have a dropdown field (a sharepoint list choice field). Based on that value selected in that field I wanted to be able to filter the query for my textbox autocomplete (a single line textbox field).

My dropdown field is named segment and my autocomplete field is called "AdvertiserName"

1. I added a callback functionality to SPAutocomplete that was needed to be able to grab the current value of the dropdown

2. I added an option CAMLexternalvalue which if set for true, forces the SPAutocomplete function to use the value of a global variable named CAMLexternal.

var CAMLexternal = "";


$(document).ready(function () {
  $().SPServices.SPAutocomplete({ 
   sourceList: "Customers",
   sourceColumn: "AdvertiserName",
   filterType: "Contains",
   columnName: "CustomerName",
   CAMLexternalvalue : true,
   ignoreCase: true,
   numChars: 2,
   slideDownSpeed: 200,
   completefunc: function ()  {
    var e=$('select[title=Segment]')[0];
    if (e.options != undefined) {
     var sCAMLQuery="";
     sCAMLQuery = 
      "" + 
      e.options[e.selectedIndex].text +
      "";
     CAMLexternal = sCAMLQuery;
    }
   },
   debug: true
  });
 });

Here is the modified SPAutocomplete function:

 $.fn.SPServices.SPAutocomplete = function (options) {
  var opt = $.extend({}, {
   WebURL: "",       // [Optional] The name of the Web (site) which contains the sourceList
   sourceList: "",      // The name of the list which contains the values
   sourceColumn: "",     // The static name of the column which contains the values
   columnName: "",      // The display name of the column in the form
   CAMLQuery: "",      // [Optional] For power users, this CAML fragment will be Anded with the default query on the relatedList
   CAMLQueryOptions: "<QueryOptions></QueryOptions>", // [Optional] For power users, allows specifying the CAMLQueryOptions for the GetListItems call
   CAMLRowLimit: 0,     // [Optional] Override the default view rowlimit and get all appropriate rows
   CAMLexternalvalue: false,   // [Optional] if true then the global variable "CAMLexternal" will be used
   filterType: "BeginsWith",   // Type of filtering: [BeginsWith, Contains]
   numChars: 0,      // Wait until this number of characters has been typed before attempting any actions
   ignoreCase: false,     // If set to true, the function ignores case, if false it looks for an exact match
   highlightClass: "",     // If a class is supplied, highlight the matched characters in the values by applying that class to a wrapping span
   uniqueVals: false,     // If set to true, the function only adds unique values to the list (no duplicates)
   maxHeight: 99999,     // Sets the maximum number of values to display before scrolling occurs
   slideDownSpeed: "fast",    // Speed at which the div should slide down when values match (milliseconds or ["fast" | "slow"])
   processingIndicator: "_layouts/images/REFRESH.GIF",    // If present, show this while processing
   completefunc: null,
   debug: false      // If true, show error messages;if false, run silent
  }, options);   var matchNum;   // Find the input control for the column and save some of its attributes
  var columnObj = $("input[Title='" + opt.columnName + "']");
  $("input[Title='" + opt.columnName + "']").css("position", "");
  var columnObjId = columnObj.attr("ID");
  var columnObjColor = columnObj.css("color");
  var columnObjWidth = columnObj.css("width");   if(columnObj.html() === null && opt.debug) {
   errBox("SPServices.SPAutocomplete",
    "columnName: " + opt.columnName,
    "Column is not an input control or is not found on page");
   return;
  }   // Remove the <br/> which isn't needed and messes up the formatting
  columnObj.closest("span").find("br").remove();
  columnObj.wrap("<div>");   // Create a div to contain the matching values and add it to the DOM
  var containerId = genContainerId("SPAutocomplete", opt.columnName);  
  columnObj.after("<div><ul id='" + containerId + "' style='width:" + columnObjWidth + ";display:none;padding:2px;border:1px solid #2A1FAA;background-color:#FFF;position:absolute;z-index:40;margin:0'></div>");   // Set the width to match the width of the input control
  $("#" + containerId).css("width", columnObjWidth);     // Handle keypresses
  $(columnObj).keyup(function () {    // Get the column's value
   var columnValue = $(this).val();    // Hide the container while we're working on it
   $("#" + containerId).hide();    // Have enough characters been typed yet?
   if(columnValue.length < opt.numChars) {
    return false;
   }    // Show the the processingIndicator as a background image in the input element
   columnObj.css({
    "background-image": "url(" + opt.processingIndicator + ")",
    "background-position": "right",
    "background-repeat": "no-repeat"
   });    // Array to hold the matched values
   var matchArray = [];
   
   // Build the appropriate CAMLQuery
   if (opt.CAMLexternalvalue) {
    opt.CAMLQuery = CAMLexternal;
   }
   var camlQuery = "<Query><OrderBy><FieldRef Name='" + opt.sourceColumn + "'/></OrderBy><Where>";
   if(opt.CAMLQuery.length > 0) {
    camlQuery += "<And>";
   }
   camlQuery += "<" + opt.filterType + "><FieldRef Name='" + opt.sourceColumn + "'/><Value Type='Text'>" + columnValue + "</Value></" + opt.filterType + ">";   
   if(opt.CAMLQuery.length > 0) {
    camlQuery += opt.CAMLQuery + "</And>";
   }
   camlQuery += "</Where></Query>";    // Call GetListItems to find all of the potential values
   $().SPServices({
    operation: "GetListItems",
    async: false,
    webURL: opt.WebURL,
    listName: opt.sourceList,
    CAMLQuery: camlQuery,
    CAMLQueryOptions: opt.CAMLQueryOptions,
    CAMLViewFields: "<ViewFields><FieldRef Name='" + opt.sourceColumn + "' /></ViewFields>",
    CAMLRowLimit: opt.CAMLRowLimit,
    completefunc: function(xData, Status) {
     // Handle upper/lower case if ignoreCase = true
     var testValue = opt.ignoreCase ? columnValue.toUpperCase() : columnValue;
     // See which values match and add the ones that do to matchArray
     $(xData.responseXML).SPFilterNode("z:row").each(function() {
      var thisValue = $(this).attr("ows_" + opt.sourceColumn);
      var thisValueTest = opt.ignoreCase ? $(this).attr("ows_" + opt.sourceColumn).toUpperCase() : $(this).attr("ows_" + opt.sourceColumn);
      // Make sure we have a match...
      if(opt.filterType === "Contains") {
       var firstMatch = thisValueTest.indexOf(testValue);
       if((firstMatch >= 0) &&
        // ...and that the match is not already in the array if we want uniqueness
        (!opt.uniqueVals || ($.inArray(thisValue, matchArray) === -1))) {
        matchArray.push($(this).attr("ows_" + opt.sourceColumn));
       }
      } else {
       // Handles normal case, which is BeginsWith and and other unknown values
       if(testValue === thisValueTest.substr(0,testValue.length) &&
         // ...and that the match is not already in the array if we want uniqueness
         (!opt.uniqueVals || ($.inArray(thisValue, matchArray) === -1))) {
        matchArray.push($(this).attr("ows_" + opt.sourceColumn));
       }
      }
     });
    }
   });    // Build out the set of list elements to contain the available values
   var out = "";
   for (i=0; i < matchArray.length; i++) {
    // If a highlightClass has been supplied, wrap a span around each match
    if(opt.highlightClass.length > 0) {
     // Set up Regex based on whether we want to ignore case
     var thisRegex = RegExp(columnValue, opt.ignoreCase ? "gi" : "g");
     // Look for all occurrences
     var matches = matchArray[i].match(thisRegex);
     var startLoc = 0;
     // Loop for each occurrence, wrapping each in a span with the highlightClass CSS class
     for (matchNum=0; matchNum < matches.length; matchNum++) {
      var thisPos = matchArray[i].indexOf(matches[matchNum], startLoc);
      var endPos = thisPos + matches[matchNum].length;
      var thisSpan = "<span class='" + opt.highlightClass + "'>" + matches[matchNum] + "</span>";
      matchArray[i] = matchArray[i].substr(0, thisPos) + thisSpan + matchArray[i].substr(endPos);
      startLoc = thisPos + thisSpan.length;
     }
    }
    // Add the value to the markup for the container
    out += "<li style='display: block;position: relative;cursor: pointer;'>" + matchArray[i] + "</li>";
   }
   
   // Add all the list elements to the containerId container
   $("#" + containerId).html(out);
   // Set up hehavior for the available values in the list element
   $("#" + containerId + " li").click(function () {
    $("#" + containerId).fadeOut(opt.slideUpSpeed);
    $("#" + columnObjId).val($(this).text());
   }).mouseover(function () {
    var mouseoverCss = {
     "cursor": "hand",
     "color": "#ffffff",
     "background": "#3399ff"
    };
    $(this).css(mouseoverCss);
   }).mouseout(function () {
    var mouseoutCss = {
     "cursor": "inherit",
     "color": columnObjColor,
     "background": "transparent"
    };
    $(this).css(mouseoutCss);
   });    // If we've got some values to show, then show 'em!
   if(matchArray.length > 0) {
    $("#" + containerId).slideDown(opt.slideDownSpeed);
   }
   // Remove the processing indicator
   columnObj.css("background-image", "");    // If present, call completefunc when all else is done
   if(opt.completefunc !== null) {
    opt.completefunc();
   }
    });  }; // End $.fn.SPServices.SPAutocomplete


 

 


Viewing all articles
Browse latest Browse all 6517

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>