This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Robot = function(robot){ | |
robot.turnLeft(robot.angle % 90); | |
//robot.turnGunRight(90); | |
robot.clone(); | |
this.direction = 1; | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(1); | |
if (robot.parentId) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example itemUrl for Document: | |
// http://<site>/<DocLib>/doc7.docx | |
// Example itemUrl for Item: | |
// http://<site>/<customsite>/Lists/<ListName>/<ID>_.000 | |
function fireWorkflow ( itemUrl, workflowName, workflowParams ) { | |
workflowParams = workflowParams || "<root />"; | |
$().SPServices({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.SPServices.StartWorkflow = function(options) { | |
var opt = $.extend({}, { | |
itemUrl: null, | |
workflowName: null, | |
workflowParameters: "<root />", | |
completefunc: null, // Function to call on completion of rendering the change. | |
debug: false // If true, show error messages;if false, run silent | |
}, options), | |
thisFunction = "SPServices.StartWorkflow", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $1_10_2 = jQuery.noConflict(); | |
(function( $, undefined ) { | |
var $formTable = null, | |
results = [], | |
queryPosition = null | |
; | |
// Why wait for the DOM to be ready? | |
ExecuteOrDelayUntilScriptLoaded($.noop, "sp.js"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $1_10_2 = jQuery.noConflict(); | |
(function( $, undefined ) { | |
var $formTable = null, | |
results = [], | |
queryPosition = null | |
; | |
// Why wait for the DOM to be ready to download sp.js? | |
ExecuteOrDelayUntilScriptLoaded($.noop, "sp.js"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.ajax({ | |
type: "GET", | |
url: "/sites/siteName/_vti_bin/ExcelRest.aspx/listName/Vendors.xlsx/OData/Table1?$inlinecount=allpages", | |
headers: { | |
"Accept": "application/json;odata=verbose", | |
"X-RequestDigest": __REQUESTDIGEST.value | |
} | |
}) | |
.done(function(data, status) { | |
console.dir(data); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $1_10_2 = jQuery.noConflict(); | |
(function( $, undefined ) { | |
var results = [] | |
; | |
retrieveListItems(); | |
function retrieveListItems() { | |
var cachedItems = JSON.parse(localStorage.getItem("pl-Vendors")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create 21,000 folders and 21,000 txt files. | |
# Add one file per folder. | |
# Folder names will be sequential. | |
# File names will start with a GUID and end with a timestamp. | |
# This is to try and prove if ODB is FIFO and not any other way. | |
param( | |
[parameter(mandatory=$true)] | |
[string]$filePath | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Created by Matthew Bramer | |
* Released under the MIT license | |
* Date: 2015-04-18 | |
* Props to: http://plumsail.com/blog/2015/02/start-sharepoint-2013-workflows-selected-items/ | |
* Tested using SharePoint Online. | |
* On-Prem still needs testing. | |
*/ | |
window.$sp = window.$sp || {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Created by Matthew Bramer :: @iOnline247 | |
* Released under the MIT license | |
* Date: 2016-02-12 v1 | |
* Inspired from script written on: 2014-05-17 | |
* https://dl.dropboxusercontent.com/u/21583725/demos/SPSDC-ModalMania/demo/js/iframeDemo.js | |
* Tested using SharePoint Online. | |
* | |
* Helpful Links | |
* https://msdn.microsoft.com/en-us/library/office/dn531432.aspx#bk_UserCustomActionRequestExamples |
OlderNewer