This file contains hidden or 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
namespace SInnovations.VSTeamServices.TasksBuilder.KeyVault.ResourceTypes | |
{ | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using CommandLine; | |
using SInnovations.VSTeamServices.TasksBuilder.Attributes; | |
using SInnovations.VSTeamServices.TasksBuilder.ResourceTypes; |
This file contains hidden or 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
using System; | |
using System.Globalization; | |
using Lucene.Net.Analysis.Standard; | |
using Lucene.Net.Documents; | |
using Lucene.Net.Index; | |
using Lucene.Net.QueryParsers; | |
using Lucene.Net.Search; | |
using Lucene.Net.Store; | |
using Version = Lucene.Net.Util.Version; |
This file contains hidden or 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
that.getData = function (listName, xmlQuery, contentType, onGetSuccess) { | |
var objClientCtx = new SP.ClientContext.get_current(); | |
if (objClientCtx) { | |
var oWeb = objClientCtx.get_web(); | |
var oList = oWeb.get_lists().getByTitle(listName); | |
var query = new SP.CamlQuery(); | |
query.set_viewXml(xmlQuery); | |
var objlistItems = oList.getItems(query); | |
objClientCtx.load(objlistItems); | |
objClientCtx.executeQueryAsync(function (sender, args) { |
This file contains hidden or 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
(function (ko, handlers, unwrap, extend) { | |
"use strict"; | |
extend(handlers, { | |
href: { | |
update: function (element, valueAccessor) { | |
handlers.attr.update(element, function () { | |
return { href: valueAccessor() }; | |
}); | |
} | |
}, |
NewerOlder