Како да одредите Луѓе како пребарување Опсег / Содржина Извор со употреба на Sharepoint 2013 ОДМОР API

I had reason to work with the SharePoint 2013 Search API via REST for the first time. I wanted to search for people, not documents. The key learning here is that you specify content sources via its GUID (or at least in this case). The following jQuery snippet shows how:

    loadExpertsAsync: функција() {

        jQuery.support.cors = вистина;

        $.ajax({
            рачно: овој.CreateFullApiUrl() +
                "?querytext='portals'&sourceid='b09a7990-05ea-4af9-81ef-edfab16c4e31'" +
                "&selectproperties='LinkedInProfileUrl,GoogleCirclesProfileUrl,BALargeProfilePictureUrls,BAGridPictures,WorkEmail,Skills,AboutMe,Interests,JobTitle,PastProjects,PictureURL,PreferredName,TwitterHandle,LinkedInProfileUrl,PreferredName,GoogleCirclesProfileUrl'" +
                "&rowlimit=99",
            метод: "GET",
            headers: { "Accept": "application/json; odata=verbose" },
            cache: лажни,
            success: функција (резултира) {

Во мојот случај, I’m running the API against SharePoint online. To get the GUID, I followed these steps:

  1. Access the SharePoint admin center
  2. Select “search” from the left hand navigation
  3. Select “Manage Result Sources”
  4. Select “Local People Results”
  5. Look at the URL.

My URL looked something like:

https://xyzzy-admin.sharepoint.com/_layouts/15/searchadmin/EditResultSource.aspx?level=tenant&sourceid=b09a7990%2D05ea%2D4af9%2D81ef%2Dedfab16c4e31&view=1

The sourceid parameter is what worked for me.

(I understand that the sourceid may actually be a sort of permanent thing with SP, but I’ll always check anyway 🙂 ).

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Пример SharePoint ОДМОР повици

Here’s a set of sample REST calls that work for me and may help you out as well. Како на 02/2014, има два примери 🙂

  1. Reference a Column With Spaces In Its Name
  2. Reference a Multi-Select Column
  3. Perform a People Search via REST

 

I’ll add to this as time passes.

Here are some useful inks I’ve found as well:

Reference a Column With Spaces In Its Name

I create a custom list with a column named “Blog Author” (space between Blog and Author).

The $select to reference that column is:

image

Simply replace the space with “_x0020_”. We see the _x0020_ in many examples across the internets and REST is no different.

If you don’t do that, you’re liable to get an error message like this:

The expression “Blog Author” is not valid.

Easy enough.

Reference a Multi-Select Lookup Column

Set up:

  1. Create a custom list named Categories.
  2. Add some categories. I added categories thusly:image
  3. Create another custom list called MockBlog and add Categories as a multi-select list column (or site column if that’s how you roll).

Add some items to your Mockblog list and you’re ready.

An Ajax style call using jQuery will look something like this:

serverUrl  = "/_api/web/lists/GetByTitle('MockBlog')/предмети" +
             "?$select=Title,Categories/Title,Blog_x0020_Author/Title" + 
             "&$expand=Blog_x0020_Author,Категории";

We’re telling SharePoint “Give me the title for all the Categories (Categories/Title). Get the actual values for Наслов од страна на $expanding the Categories list.” (My RESTful paraphrasing is probably pretty loose, but this how I’m interpreting it).

If you’re doing this via JavaScript and using Fiddler to look at the output, you get something like this in return:

 

image

(The above is a JSON object)

Perform a People Search via REST

I blogged about this separately. The key is to specify a sourceid parameter whose value is the GUID of the Local People content source. (Content sources used to be called scopes and it’s my-oh-my so hard not to call everything a scope for me!).

Прочитајте повеќе за тоа овде: http://www.mstechblogs.com/paul/?p=10385

 

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брз и лесен: Креирај SharePoint Мапа Користење на одмор

There are a lot of resources around that show how to do this, but I couldn’t find a comprehensive go-to link, so here we are.

You can create a SharePoint site using the REST API.  Here’s a fully baked example:

<!--
    SiteRequestForm.html: Collect information and create a site for the user.
-->

<центар>
<маса>
    <tr>
        <td>Site Name:</td>
        <td><влез тип="text" име="SiteName" ид="SiteName" /></td>
    </tr>
    <tr>
        <td colspan="2">
            <влез тип="submit" ид="CreateSiteButton" вредност="Create the Site" />
        </td>
    </tr>
</маса>
</центар>

<скрипта src="../Plugins/jquery-1.11.0.min.js"></скрипта>

<скрипта>
var CreateSiteLogicContainer = {

    createSiteData: {
            "parameters": {
                __metadata: { "type": "SP.WebInfoCreationInformation" },
                Url: "Paultest1",
                Наслов: "Paultest1",
                Опис: "rest-created web by Paul!",
                Јазик: 1033,
                WebTemplate: "sts",
                UseUniquePermissions: лажни
            }
    },

    createSite: функција () {

        jQuery.support.cors = вистина;

        CreateSiteLogicContainer.createSiteData.parameters.Url = $("#SiteName").val();
        
        $.ajax({
            рачно: "https://bigapplesharepoint.sharepoint.com/NBAIADev/_api/web/webinfos/add",
            метод: "POST",

            headers: {
                "Accept": "application/json; odata=verbose",
                "content-type": "application/json;odata=verbose",
                "X-RequestDigest": $("#__REQUESTDIGEST").val()
            },

            податоци: JSON.stringify(CreateSiteLogicContainer.createSiteData),

            success: функција () { alert("success"); },
            грешка: функција () { alert("error"); }

        });
    },

    wireUpForm: функција () {
        $("#CreateSiteButton").кликнете(функција () {
            alert("About to try and create the site.");
            CreateSiteLogicContainer.createSite();
        });
    }


}

CreateSiteLogicContainer.wireUpForm();

</скрипта>

When successful, you get a JSON packet in response like this:

image

My key thoughts and learnings from this include:

  • This approach uses jQuery.  Во мојот случај, my jQuery library is located in “../plugins.”  You’ll want to change that to point to your favorite JQ location.
  • You can copy and paste that whole snippet into a Content Editor Web Part on a page and it should work just fine.  You’ll want to change the end point of the API call and make sure you reference JQ correctly.
  • The URL is relative to your API’s endpoint.  Во мојот случај, it’s creating sub-sites underneath https://bigapplesharepoint.com
  • You don’t need to provide a content-length. Some blog posts and MSDN document implies that you do, but happened for me automatically, which I assume is being handled by the $.ajax call itself.
  • This line is required in order to avoid a “forbidden” response: "X-RequestDigest": $("#__REQUESTDIGEST").val().  There are other ways to do it, but this is pretty nice.  I have lost the link to blog that provided this shortcut.  H/T to you, mysterious blogger!

Good luck and hope this helps someone out.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Надминат проблем досадни со Релативна Url адреси во SharePoint Брзи Стартување

I wanted to add a link to the quick launch navigation the other day and SharePoint told me:

image

Pure text version of that is:

Ensure that the URL is valid and begins with either a valid character (a number sign (#) or forward slash (/)) or a valid supported protocol (на пример, ‘http://", ‘https://", ‘file://", ‘ftp://", ‘mailto:", 'Вести:").

"Лим и сипаници!" Реков.

А за да се заобиколи ова е да се користи JavaScript за да најде познат алка во брзо стартување и замени своето однесување.

Да ги тестираат оваа, додадете нов линк до вашиот сајт тест thusly:

image

Јас се користи jQuery. To solve it, добијат некои JavaScript и jQuery врз страница користење на вашите омилени техника и со линија на кодот се допаѓа ова:

 

$(документ).подготвени( функција () {

    $("на:содржи("Тест URL заменувачки)").кликнете(функција () { alert("променето однесување клик!"); се врати лажни;});

});

И вашиот чичко Боб.

На менувачот jQuery наоѓа секој <на> ознака дека има "Тест URL замена" во своето име. Вие може да сакате да се најде мелодија дека во зависност од вашата врска и како.

На .Кликнете(функција() поголем ефект што и SharePoint би направиле кога корисникот ќе кликне. Осигурете "return false", или на друго место ќе го направи вашиот работи и потоа обидете се да го href нешто премногу, што не е речиси сигурно вашата цел.

Ова беше направено и тест во онлајн средина SharePoint но треба да работат добро во 2010 и порано премногу.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брзо и едноставно: SharePoint ОДМОР Повик враќа само 100 Евиденција

I’ve been working on a public facing web site for my SharePoint practice here in New York and it uses a lot of JavaScript and REST calls to show content.

During mainline development, I create a small dataset with just 10 or so rows in a custom list and my REST calls all pulled from there.  Once I bumped up the list to have a few hundred rows of data to test for anticipated growth, I found that I was getting exactly 100 rows returned back on my REST calls.

This is a very simple thing to address.  Во мојот случај (and I believe in most cases), the default REST calls to SharePoint (and possibly as an industry standard?) се врати 100 rows.  To return more than the default, use the $top parameter on your call, како и во:

GET /Insights Dev/_api/web/lists/GetByTitle(‘MockBlog’)/предмети?$select=ID,Наслов,Categories/Title,Blog_x0020_Author/Title,DatePublished,BlogSummary&$expand=Blog_x0020_Author,Категории&$filter=&$top=9999

I picked 9999 in this case since I know that growth-wise, there won’t be more than 200 or so rows added to this list in a year.  If it becomes ungainly, we can implement some paging down the road.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брзо и едноставно: Реши "Невалиден URL параметар” Проблемот со UpdateListItems во lists.asmx

When working with UpdateListItems via lists.asmx, it’s easy to generate the error:

Invalid URL Parameter.

The URL provided contains an invalid Command or Value. Please check the URL again.

You can get this error when you forget to include ID in the the list of fields to update.  Овој, like a lot of these SP web services, is a bit counterintuitive since you need to include the ID in the ID attribute of the <Method> element.  And you’re not updated ID and probably never want to in the first place.

This SOAP envelope works:

<soapenv:Плик xmlns:soapenv ='http://schemas.xmlsoap.org/soap/envelope/'>
  <soapenv:Тело>                      
    <UpdateListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>                     
      <listName>{C712E2EA-54E1-47AD-9D99-1848C7773E2F}</listName>                     
        <updates>                     
         <Batch OnError="Continue">
          <Method ID="1" Cmd="Update">
            <Field Name="CooperativeLock">locked!</Поле>
            <Field Name="ID">1</Поле>
          </Method>
        </Batch>                     
        </updates>                
      </UpdateListItems>             
  </soapenv:Тело>         
</soapenv:Плик>

If you strip out the ID field reference then you’ll get the annoying “Invalid URL parameter” message.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

 

Кеширање сиромашен човек во вклучите Javascript-

[TL;DR version: use cookies to store the results of async calls; render the results of past async calls immediately and then validate them after page-load.]

I’ve been working on SharePoint intranet site for a client that features, меѓу другото, a stylized secondary navigation whose menu options are managed via a regular old custom list.  The idea is that the client gets to control “their” site’s menu without affecting or being affected by the global navigation put out by IT.

(there is something incredibly subversive about adding a CEWP that points to an HTML file that loads some CSS and JS to fundamentally alter almost everything about a site’s behavior… but that’s for another post)

The code for this pretty simple:

The sore spot here is that every time anyone hits one of the site’s pages, that user’s web browser is reaching out to get items from the list.  Once dev is complete and testing has proven things to be stable and complete, this call is unnecessary more than 99% of the time since the menu rarely changes.  It also has a weird UI affect which is common in this brave new world of hyper-ajaxy web sites – the page renders and only then does the menu render.  It’s jittery and distracting in my view.  And jittery. Така, caching. 

I modified the logic thusly:

  • Look for a cookie in the browser that contains the menu as I last read it
    • If found, render it immediately.  Don’t wait for the page to finish loading.  (You need to make sure your HTML is strategically placed here, but it’s not hard to do).
  • Wait for the page to finish loading and make an async call to load up menu items from a list using REST or lists.asmx or whatever
  • Compare what I got against the cookie
    • If it matches, STOP
    • Во спротивно, using jQuery, dynamically populate a bunch if <Ли>’s in a <Улица>
  • Use CSS to do all the formatting
  • Profit!

Some of you are going to say, “hey! there’s no real caching going on here since you’re reading the menu anyway every single time."  And you’re right – I’m not giving the server any kind of break.  But because the call is async and happens after the page’s initial HTML payload fully renders, it “feels” more responsive to the user.  The menu renders pretty much as the page draws.  If the menu happens to the change, the user is subjected to a jittery re-draw of the menu, but only that one time.

There are some ways to make this caching more effective and help out the server at the same time:

  • Put in a rule that the “cookie cache” is valid for a minimum of 24 hours or some other timeframe. As long as there is no expired cookie, use the cookie’s menu snapshot and never hit the server.

Well … that’s all that come to mind right now :). 

If anyone has any clever ideas here I’d love to know them.

And lastly – this technique can be used for other stuff.  This client’s page has a number of data-driven things on various pages, many of them changing relatively rarely (like once a week or once a month).  If you target specific areas of functionality, you can give a more responsive UI by pulling content from the local cookie store and rendering immediately.  It feels faster to the user even if you’re not saving the server any cycles.  Можете може save the server cycles by deciding on some conditions and triggers to invalidate this local cookie cache.  That’s all situational and artsy stuff and really the most fun :). 

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Како да: Конфигурирате тест единица и тест покриеност со QUnit.js и Blanket.js за канцеларија 365 SharePoint App

Intro

I’ve been exploring unit testing and test coverage for JavaScript as I work on a new SharePoint app for SharePoint online in the Office 365 suite.  The obvious research paths led me to Qunit.js and right after that, да Blanket.js.

QUnit let me set up unit tests and group them into modules.  A module is just a simple way to organize related tests. (I’m not sure I’m using it as intended, but it’s working for me so far with the small set of tests I have thus far defined).

Blanket.js integrates with Qunit and it will show me the actual lines of JavaScript that were – and more importantly – were not actually executed in the course of running the tests.  This is “coverage” – lines that executed are covered by the test while others are not.

Between setting up good test cases and viewing coverage, we can reduce the risk that our code has hidden defects.  Good times.

Qunit

Assuming you have your Visual Studio project set up, start by downloading the JavaScript package from http://qunitjs.com.  Add the JavaScript and corresponding CSS to your solution.  Mine looks like this:

image

Figure 1

Како што можете да видите, I was using 1.13.0 at the time I wrote this blog post. Don’t forget to download and add the CSS file.

That out of the way, next step is to create some kind of test harness and reference the Qunit bits.  I’m testing a bunch of functions in a script file called “QuizUtil.js” so I created an HTML page called “QuizUtil_test.html” as shown:

image Figure 2

Here’s the code:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <наслов>QuizUtil test with Qunit</наслов>
    <линк rel="stylesheet" href="../CSS/qunit-1.13.0.css" />
    <скрипта тип="text/javascript" src="QuizUtil.js" data-cover></скрипта>
    <скрипта тип ="text/javascript" src ="qunit-1.13.0.js"></скрипта>
    <скрипта тип ="text/javascript" src ="blanket.min.js"></скрипта>

    <скрипта>
        module("getIDFromLookup");
        тест("QuizUtil getIDFromLookupField", функција () {
            var goodValue = "1;#Пол Галвин";

            equal(getIDFromLookupField(goodValue) + 1, 2), "ID of [" + goodValue + "] + 1 should be 2";
            equal(getIDFromLookupField(undefined), undefined, "Undefined input argument should return undefined result.");
            equal(getIDFromLookupField(""), undefined, "Empty input argument should return an undefined value.");
            equal(getIDFromLookupField("gobbledigood3-thq;dkvn ada;skfja sdjfbvubvqrubqer0873407t534piutheqw;vn"), undefined,"Should always return a result convertible to an Integer");
            equal(getIDFromLookupField("2;#some other person"), "2", "Checking [2;#some other person].");
            equal(getIDFromLookupField("9834524;#long value"), "9834524", "Large value test.");
            notEqual(getIDFromLookupField("5;#anyone", 6), 6, "Testing a notEqual (5 is not equal to 6 for this sample: [5;#anyone]");

        });

        module("htmlEscape");
        тест("QuizUtil htmlEscape()", функција () {
            equal(htmlEscape("<"), "&lt;", "Escaping a less than operator ("<")");
            equal(htmlEscape("<div class=\"someclass\">Some text</div>"), "&lt;div class=&quot;someclass&quot;&GT;Some text&lt;/div&GT;", "More complex test string.");
        });

        module("getDateAsCaml");
        тест("QuizUtil getDateAsCaml()", функција () {
            equal(getDateAsCaml(нови Датум("12/31/2013")), "2013-12-31T:00:00:00", "Testing hard coded date: [12/31/2013]");
            equal(getDateAsCaml(нови Датум("01/05/2014")), "2014-01-05T:00:00:00", "Testing hard coded date: [01/05/2014]");
            equal(getDateAsCaml(нови Датум("01/31/2014")), "2014-01-31T:00:00:00", "Testing hard coded date: [01/31/2014]");
            equal(getTodayAsCaml(), getDateAsCaml(нови Датум()), "getTodayAsCaml() should equal getDateAsCaml(new Date())");
            equal(getDateAsCaml("nonsense value"), undefined, "Try to get the date of a nonsense value.");
            equal(getDateAsCaml(undefined), undefined, "Try to get the date of the [undefined] date.");
        });

        module("getParameterByName");
        тест("QuizUtil getParameterByName (from the query string)", функција () {
            equal(getParameterByName(undefined), undefined, "Try to get undefined parameter should return undefined.");
            equal(getParameterByName("does not exist"), undefined, "Try to get parameter value when we know the parameter does not exist.");

        });

        module("Cookies");
        тест("QuizUtil various cookie functions.", функција () {
            equal(setCookie("test", "1", -1), getCookieValue("test"), "Get a cookie I set should work.");
            equal(setCookie("anycookie", "1", -1), вистина, "Setting a valid cooking should return 'true'.");
            equal(setCookie("crazy cookie name !@#$%\"%\\^&*(()?/><.,", "1", -1), вистина, "Setting a bad cookie name should return 'false'.");
            equal(setCookie(undefined, "1", -1), undefined, "Passing undefined as the cookie name.");
            equal(getCookieValue("does not exist"), "", "Cookie does not exist test.");
        });

    </скрипта>
</head>
<тело>
    <div ид="qunit"></div>
    <div ид="qunit-fixture"></div>

</тело>
</html>

There are several things happening here:

  1. Referencing my code (QuizUtil.js)
  2. Referencing Qunity.js
  3. Defining some modules (getIDFromLookup, Cookies, и други)
  4. Placing a <div> whose ID is “qunit”.

Потоа, I just pull up this page and you get something like this:

image

Figure 3

If you look across the top, you have a few options, two of which are interesting:

  • Hide passed tests: Pretty obvious.  Can help your eye just see the problem areas and not a lot of clutter.
  • Module: (drop down): This will filter the tests down to just those groups of tests you want.

As for the tests themselves – a few comments:

  • It goes without saying that you need to write your code such that it’s testable in the first place.  Using the tool can help enforce that discipline. На пример, I had a function called “getTodayAsCaml()".  This isn’t very testable since it takes no input argument and to test it for equality, we’d need to constantly update the test code to reflect the current date.  I refactored it by adding a data input parameter then passing the current date when I want today’s date in CAML format.
  • The Qunit framework documents its own tests and it seems pretty robust.  It can do simple things like testing for equality and also has support for ajax style calls (both “real” or mocked using your favorite mocker).
  • Going through the process also forces you to think through edge cases – what happens with “undefined” or null is passed into a function.  It makes it dead simple to test these scenarios out.  Good stuff.

Coverage with Blanket.js

Blanket.js complements Qunit by tracking the actual lines of code that execute during the course of running your tests.  It integrates right into Qunit so even though it’s a whole separate app, it plays nicely – it really looks like it’s one seamless app.

This is blanket.js in action:

image Figure 4

image

Figure 5

(You actually have to click on the “Enable coverage” checkbox at the top [see Figure 3] to enable this.)

The highlighted lines in Figure 5 have not been executed by any of my tests, so I need to devise a test that does cause them to execute if I want full coverage.

Get blanket.js working by following these steps:

  1. Download it from http://blanketjs.org/.
  2. Add it to your project
  3. Update your test harness page (QuizUtil_test.html in my case) as follows:
    1. Reference the code
    2. Decorate your <скрипта> reference like this:
    <скрипта тип="text/javascript" src="QuizUtil.js" data-cover></скрипта>

Blanket.js picks up the “data-cover” attribute and does its magic.  It hooks into Qunit, updates the UI to add the “Enable coverage” option and voila!

Резиме (TL; DR)

Use Qunit to write your test cases.

  • Download it
  • Add it to your project
  • Write a test harness page
  • Create your tests
    • Refactor some of your code to be testable
    • Be creative!  Think of crazy, impossible scenarios and test them anyway.

Use blanket.js to ensure coverage

  • Make sure Qunit is working
  • Download blanket.js and add it to your project
  • Add it to your test harness page:
    • Add a reference to blanket.js
    • Add a “data-cover” attribute to your <скрипта> tag
  • Run your Qunit tests.

I never did any of this before and had some rudimentary stuff working in a handful of hours. 

Happy testing!

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Последниот Одговараат што некогаш ќе Носете?

[Брзи Забелешка - ова е прилично долг пост на работно место за мојата група тука во Њујорк и вие не треба да живеат во три-држава област, ако сте заинтересирани.]

Јас се приклучи слалом Консалтинг над 18 месеци и што го прави овој мој најдолготрајната работа од 2007. Јас не планираат на тој начин. Пред низа од работа подрипнувајќи, која започна со мојот скок во SharePoint светот, Јас бев на едно место за единаесет години. Најпосле најдов нова, траен место за работа за долги дестинации тука во слалом.

Ова место е во пораст и ми треба некаква помош за да го контролираат дека. Вид на помош ми треба е обично се нарекува "Sharepoint Решенија архитект", иако сум го нашол на архитектот збор да биде над и / или погрешно се користи во просторот SharePoint за подолго време сега. Сум се бори за тоа како да Блог за. Не сакам да се едноставно листата од еден куп на куршум поени во зарове / чудовиштето стил. Мојата одлична регрутирање врсници се прави дека веќе :). Така, Решив да се земе "ден во животот" пристап. Прочитајте над неа, и сметаат дека:

1) Ако тоа апелира и

2) Дали знаете во вашите коски што ќе може да го направи тоа.

Ако одговорот е да, контактирајте ме (paul.galvin @ slalom.com) и ајде да разговараме.

Овие се она што можете да очекувате да се направи во типична недела / месец како решенија архитект на мојот тим:

  • Се кандидира проекти, често повеќе од едно по едно време. Некои проекти се големи и така што би поседувате дека еден проект. "Вклучување" проект значи дека имаш надзор и одговорност за севкупниот квалитет на испорака. Во речиси секој случај ќе имаат премиерот и навистина силен тим на devs, БАС, UX луѓе, итн, за да ви помогне. Но ќе биде главната лице на клиентот гледа, трустови, итн. Нема крие во сенките во оваа улога :). Ќе наплатам овој пат, а целта е да ве окупира доволно да се направи ова 80 проценти од времето.
  • Им помогне со документација - маторици, RFPs, палуби - сето тоа добри нешта. Мислам дека ние имаме сеат процес долу прилично тесни и цврсти, па тоа е прилично формулаичен. Ако сте навикнати да пишување маторици денес, нашиот процес нема да биде предизвик за вас. RFPs - овие се малку потешко. Тие имаат тенденција да биде нарачана во природата да започне и со RFPs обично се повлече во повеќе различни автори. Тоа е и добро и лошо, но главно добро. Ова може да се scrambly кога треба да жонглирам потребата за одлични услуги на клиентите, а исто така се обидува да освои нови работни. Вие веројатно нема да поседувате на RFP, но ќе биде побарано да придонесе делови.
  • Продажбата на повици, но не поблиску. Во текот на еден месец, можете да очекувате да одат на неколку продажбата повици со нашиот продажен тим. Ќе биде МСП во соба, се забележува и помогне во форма на решение. Сепак, вие не ќе биде побарано или се очекува да се справи со продажбата циклус од почеток до крај. Вие не треба да се "продаде,"Вие само треба да биде смирен глас на стручни причина во соба. Оваа гради доверба и самодоверба и тоа е причината зошто сте таму. Се разбира, ако ви се допаѓа продажба, тогаш има простор за вас да расте тука.
  • Им помогне со регрутирање. Ние имаме некој вид на упатување програма, па ако знаете навистина силна луѓе во заедницата, кој мислите дека треба да биде дел од Слалом, може да имаат корист на тој начин. Имаме посветен работодавци (кои се одлични) да го стори лавовски на овој вид на работа. Помошта се интервјуирање на кандидати - се тие добро се вклопуваат културно? Дали тие ги знаат своите работи? Тие можат да прават * ми * животот полесен? 🙂 This comes in spurts, неколку пати месечно, иако во некои месеци не би го направи тоа на сите.
  • Помогне да се дефинира најдобри практики, изгради до нашите IP адреса и да ни прават поконкурентни на пазарот. Дали сте искусен човек / Гал. Сте биле околу блок - не само во SharePoint, но имате искуство во други технологии и живеел низ добри и лоши (дури и ужасна) проекти во текот на сите. Како резултат на, знаеш што работи, а што не. Ќе сакате да ги споделите тоа искуство со нас на ден на ден основа, во тактички смисла (i.e. се кандидира на вашиот проектите навистина добро) но исто така и стратешки. "Најдобри практики" е малку претерува како термин и јас да се двоуми да ја користите. Основната идеја е дека доаѓате во како искусен лице со длабоки и релевантно искуство и ние сакаме да се интегрираат на најдоброто од вашата learnings во тоа како ние се вклучат со клиенти на ден на ден основа.
  • Се забавуваат - Ние сме многу интегрирани куп. Сакам да се избегне уште една фраза, но тоа е навистина способен во овој случај - ние напорно работиме (вид на) и ние играат уште потешко :). Таму е Арон Sorkin вид на закачки овде, собата е секогаш полн со паметни луѓе, сакаме нашите пијалак и ги организираме фер број на забавни настани - филм ноќ, безбол патувања (дури и ако тие се ужасна, практично зло тимови).

Ако можам да го сумира сето тоа во еден збор, Јас би го користат зборот "лидерство". Водач проекти, да имаат водечка улога во градењето на оваа практика (IP, градење на тим), итн.

Но, чекај! Има повеќе! Зошто инаку работат во слалом?

  • Извонреден единство на намери - секој сака да расте тоа нешто надвор. “This thing” is the New York office. Секој е на одборот со оваа.
  • Ветер во вашите едра - сестра канцеларии, сестра практики - Слалом е "целосна услуга" консалтинг организација. Јас да доведе до SharePoint пракса (на "пракса Површина олово" во категоријата слалом Жаргон). Имам сестра практики на 11 други слалом канцеларии. Па дури иако јас сум крал колку што SharePoint е загрижен тука во слалом Њујорк, Имам колега практики во Чикаго, Сиетл, Далас, Атланта, Бостон, итн. од кои можам да се осврне поддршка. Тоа е навистина најдоброто од двата света - значајна автономија овде во Њујорк, но пристап до тони на талент во организацијата.
  • Ветер во продажбата (2) - Ние го правиме повеќе од SharePoint - многу повеќе. We do BI, CRM, UX, бизнис консалтинг, Мобилни, сопствени развој и други. Ние сме добри во крос продажба меѓу нас самите и ние сме добри во сликарството - и уште поважно,, доставување на - "целосна услуга" слика за нашите клиенти. Ова е особено привлечен за мене. Сум бил во многу помали orgs работат на SharePoint свирки и фрустрирани одново и одново, бидејќи бевме гулаб наоѓаат како "SharePoint луѓе." Тоа не се случи со слалом и ние да се направи поинтересна работа како резултат.
  • Локално модел - не патување.
  • Долгорочен раст - Слалом се случува gangbusters. Многу раст и стабилност. Раст, исто така, значи дека ние треба да се вработи лидери денес да се упатат до нови тимови како што ние додадете повеќе клиенти и вработени да ги поддржи оние клиенти.

Јас би можеле да одат на, but I’ve probably already gone on too long. Мислам дека сум долови суштината овде. Ако сте размислување за промена на работни места и тоа изгледа добро за вас, ајде да разговараме.

Ако сте задоволни во вашата тековна работа - ајде да зборуваме во секој случај :). Сум бил во многу места и беше многу "среќен" во времето. Слалом е различен и јас би го поздравил можност да ви убедат на таа.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брз и лесен: Поставите големината на Теми во листа во Windows од App Store

Во продавница на Windows App Јас сум создавање на, Сакам да се покаже на корисник разни информативни пораки.  Јас зедов на листата како алатка за да ја покаже, така што тие може да дојдете преку нив и сите што добри нешта. 

Пораките се само за информации, па нема потреба да се обезбедат сите дека екстра празни места околу нив, бидејќи на корисникот никогаш не може да ги изберете за ништо.  На стандардното однесување на листата обезбедува значителен износ на баласт и јас сакав да се ослободи од неа.  Добро .... не можете да направите тој вид на работа на листата директно.  Меѓутоа, можете да го направите на ставките ќе додадете:

        приватни поништат AddGameStateLogMessage(низа theMessage)
        {
            TextBox t = нови TextBox();
            t.Text = GameStateCounter     + ": " + theMessage;
            t.TextWrapping = TextWrapping.Wrap;
            t.MinWidth = 400;
            Дебелина thisPadding = нови Дебелина(5, 0, 5, 0);
            t.Padding = thisPadding;
            t.FontSize = 12;

            ListBoxItem дека = нови ListBoxItem();
            li.Content = t;
            li.MaxHeight = 25;
            thisPadding = нови Дебелина(5, 0, 5, 0);
            li.Padding = thisPadding;

            GameStateLog.Items.Insert(0,Ли);
        }

во горната, Јас сум создавање на TextBox и поставување на своите фонт, нејзините баласт, итн.

Следна, Јас создаде ListBoxItem и наместете ја неговата содржина во форматиран TextBox.

Конечно, Јас го вметнете ListBoxItem во листата.  (Сакам да се покаже најновите пораки на врвот на листата, па оттука Внеси(0,Ли) наместо просто ја() повикување.).

Јас ќе бидам tweaking ова малку пред Јас сум навистина среќен со однесувањето листата, но моделот е прикажано погоре е многу плодна.  Се надевам дека некој друг смета дека е корисно.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin