Si të përcaktoni Njerëzit si Kërko Fushëveprimi / Përmbajtja Burimi Duke përdorur SharePoint 2013 REST 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: funksion() {

        jQuery.support.cors = i vërtetë;

        $.ajax({
            url: kjo.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",
            metodë: "GET",
            headers: { "Accept": "application/json; odata=verbose" },
            cache: i rremë,
            success: funksion (pasojë) {

Në rastin tim, 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 🙂 ).

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Telefonatat Shembull SharePoint REST

Here’s a set of sample REST calls that work for me and may help you out as well. Si të 02/2014, there are two examples 🙂

  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')/artikuj" +
             "?$select=Title,Categories/Title,Blog_x0020_Author/Title" + 
             "&$expand=Blog_x0020_Author,Categories";

We’re telling SharePoint “Give me the title for all the Categories (Categories/Title). Get the actual values for Titull nga $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!).

Lexoni më shumë për atë këtu: http://www.mstechblogs.com/paul/?p=10385

 

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Quick dhe Easy: Krijo një pushim SharePoint Site Using

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.
-->

<qendër>
<tryezë>
    <tr>
        <td>Site Name:</td>
        <td><të dhëna lloj="text" emër="SiteName" id="SiteName" /></td>
    </tr>
    <tr>
        <td colspan="2">
            <të dhëna lloj="submit" id="CreateSiteButton" vlerë="Create the Site" />
        </td>
    </tr>
</tryezë>
</qendër>

<dorëshkrim src="../Plugins/jquery-1.11.0.min.js"></dorëshkrim>

<dorëshkrim>
var CreateSiteLogicContainer = {

    createSiteData: {
            "parameters": {
                __metadata: { "type": "SP.WebInfoCreationInformation" },
                Url: "Paultest1",
                Titull: "Paultest1",
                Përshkrim: "rest-created web by Paul!",
                Language: 1033,
                WebTemplate: "sts",
                UseUniquePermissions: i rremë
            }
    },

    createSite: funksion () {

        jQuery.support.cors = i vërtetë;

        CreateSiteLogicContainer.createSiteData.parameters.Url = $("#SiteName").val();
        
        $.ajax({
            url: "https://bigapplesharepoint.sharepoint.com/NBAIADev/_api/web/webinfos/add",
            metodë: "POST",

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

            të dhëna: JSON.stringify(CreateSiteLogicContainer.createSiteData),

            success: funksion () { vigjilent("success"); },
            gabim: funksion () { vigjilent("error"); }

        });
    },

    wireUpForm: funksion () {
        $("#CreateSiteButton").klikoni(funksion () {
            vigjilent("About to try and create the site.");
            CreateSiteLogicContainer.createSite();
        });
    }


}

CreateSiteLogicContainer.wireUpForm();

</dorëshkrim>

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

image

My key thoughts and learnings from this include:

  • This approach uses jQuery.  Në rastin tim, 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.  Në rastin tim, 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.

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Kapërcyer problem i bezdisshëm me URL afërm në SharePoint Quick Launch

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 (për shembull, ‘http://', ‘https://', ‘file://', ‘ftp://', ‘mailto:', ‘news:').

“Blech and pox!” I said.

A workaround to this is to use JavaScript to find a known link in the quick launch and override its behavior.

To test this, add a new link to your test site thusly:

image

I used jQuery. Për të zgjidhur atë, get some JavaScript and jQuery onto the page using your favorite technique and with a line of code like this:

 

$(dokument).gati( funksion () {

    $("një:contains('Test URL replacement')").klikoni(funksion () { vigjilent("changed click behavior!"); kthehem i rremë;});

});

And Bob’s your uncle.

The jQuery selector finds every <një> tag that has “Test URL replacement” in its name. You may want to find-tune that depending on your link and such.

The .click(funksion() overrides whatever SharePoint would have done when the user clicked. Make sure you “return false” or else it will do your stuff and then try to the href thing too, which is almost certainly not your goal.

This was done and test in a SharePoint online environment but should work well in 2010 and earlier too.

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Shpejtë dhe i thjeshtë: SharePoint REST Call Vetëm Kthim 100 Të dhëna

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.  Në rastin tim (and I believe in most cases), the default REST calls to SharePoint (and possibly as an industry standard?) kthehem 100 rows.  To return more than the default, use the $top parameter on your call, si në:

GET /Insights Dev/_api/web/lists/GetByTitle(‘MockBlog’)/artikuj?$select=ID,Titull,Categories/Title,Blog_x0020_Author/Title,DatePublished,BlogSummary&$expand=Blog_x0020_Author,Categories&$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.

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Shpejtë dhe i thjeshtë: Zgjidhur "parametër URL e pavlefshme” Problemi me UpdateListItems në 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.  Kjo, 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:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'>
  <soapenv:Trup>                      
    <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>
            <Field Name="ID">1</Field>
          </Method>
        </Batch>                     
        </updates>                
      </UpdateListItems>             
  </soapenv:Trup>         
</soapenv:Zarf>

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

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

 

Caching varfër njeriut në 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, ndër të tjera, 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. Kështu, 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
    • Otherwise, using jQuery, dynamically populate a bunch if <li>’s in a <st>
  • 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.  Ju mund 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 :). 

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Si të: Konfiguro Njësia Test dhe Test Mbulimi me QUnit.js dhe Blanket.js Për një Zyra 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, në 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

Siç mund ta shikoni, 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>
    <titull>QuizUtil test with Qunit</titull>
    <lidhje rel="stylesheet" href="../CSS/qunit-1.13.0.css" />
    <dorëshkrim lloj="text/javascript" src="QuizUtil.js" data-cover></dorëshkrim>
    <Lloji script ="text/javascript" src ="qunit-1.13.0.js"></dorëshkrim>
    <Lloji script ="text/javascript" src ="blanket.min.js"></dorëshkrim>

    <dorëshkrim>
        module("getIDFromLookup");
        provë("QuizUtil getIDFromLookupField", funksion () {
            var goodValue = "1;#Paul Galvin";

            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");
        provë("QuizUtil htmlEscape()", funksion () {
            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");
        provë("QuizUtil getDateAsCaml()", funksion () {
            equal(getDateAsCaml(i ri Date("12/31/2013")), "2013-12-31T:00:00:00", "Testing hard coded date: [12/31/2013]");
            equal(getDateAsCaml(i ri Date("01/05/2014")), "2014-01-05T:00:00:00", "Testing hard coded date: [01/05/2014]");
            equal(getDateAsCaml(i ri Date("01/31/2014")), "2014-01-31T:00:00:00", "Testing hard coded date: [01/31/2014]");
            equal(getTodayAsCaml(), getDateAsCaml(i ri Date()), "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");
        provë("QuizUtil getParameterByName (from the query string)", funksion () {
            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");
        provë("QuizUtil various cookie functions.", funksion () {
            equal(setCookie("test", "1", -1), getCookieValue("test"), "Get a cookie I set should work.");
            equal(setCookie("anycookie", "1", -1), i vërtetë, "Setting a valid cooking should return 'true'.");
            equal(setCookie("crazy cookie name !@#$%\"%\\^&*(()?/><.,", "1", -1), i vërtetë, "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.");
        });

    </dorëshkrim>
</head>
<trup>
    <div id="qunit"></div>
    <div id="qunit-fixture"></div>

</trup>
</html>

There are several things happening here:

  1. Referencing my code (QuizUtil.js)
  2. Referencing Qunity.js
  3. Defining some modules (getIDFromLookup, Cookies, dhe të tjerët)
  4. Placing a <div> whose ID is “qunit”.

Pastaj, 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. Për shembull, 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 <dorëshkrim> reference like this:
    <dorëshkrim lloj="text/javascript" src="QuizUtil.js" data-cover></dorëshkrim>

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!

Përmbledhje (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 <dorëshkrim> etiketë
  • Run your Qunit tests.

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

Happy testing!

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Suit Fundit ndonjëherë ju do të veshin?

[Shënim të shpejtë - kjo është një post goxha të gjatë në hapjen e vendeve të punës për grupin tim këtu në New York dhe ju keni nevojë për të jetuar në zonën e tri-shtet nëse ju jeni të interesuar.]

Unë u bashkua Consulting gjatë sllallomit 18 muaj më parë dhe që e bën këtë punën time të gjatë të qëndrueshme që prej 2007. Unë nuk e kam ndërmend atë mënyrë që. Para një varg të punës hopping që ka filluar me kërcim tim në botën e SharePoint, Unë isha në një vend për njëmbëdhjetë vjet. Unë e kam gjetur më në fund një të ri, vend i qëndrueshëm për të punuar për ngarkesë të gjatë këtu në sllallomin.

Ky vend është në rritje dhe kam nevojë për ndihmë për të kontrolluar se. Lloj ndihme kam nevojë është quajtur zakonisht një "SharePoint Solutions Arkitekt" edhe pse unë kam gjetur fjala arkitekt të jetë mbi dhe / ose të përdoren gabimisht në hapësirën SharePoint për një kohë mjaft tani. Unë kam qenë duke luftuar se si të blog në lidhje me këtë. Unë nuk dua që thjesht lista nga një bandë e pikave plumb në Dice / style përbindësh. Pjesmarrës të shkëlqyera rekrutimin e mia kanë qenë duke bërë që tashmë :). Kështu, I vendosur për të marrë një "ditë në jetën qasje". Lexoni atë mbi dhe e konsiderojnë:

1) Nëse ajo e apelit dhe

2) Nëse ju e dini se në kockat e tua që ju mund ta bëni atë.

Nëse po, kontaktoni me mua (paul.galvin @ slalom.com) dhe le të flasim.

Këto janë ato që ju mund të presin për të bërë në javën tipike / muaj si një arkitekt i solutions në ekipin tim:

  • Drejtuar projekte, shpesh më shumë se një në një kohë. Disa projekte janë të mëdha dhe kështu ju do të vetë se një projekt. "Drejtimin" një projekt do të thotë që ju keni mbikëqyrjen dhe përgjegjësinë për kualitetin e përgjithshëm të ofrimit të. Në gati çdo rast ju do të keni një PM dhe një ekip vërtet të fortë e devs, Bas, Njerëzit UX, etj, për të mbështetur ju. Por ju do të jetë fytyra kryesore klienti e sheh, trustet, etj. Nuk ka fshehur në hije në këtë rol :). Ju do të faturojë këtë kohë dhe qëllimi është për të mbajtur të zënë të mjaftueshme për të bërë këtë 80 për qind të kohës.
  • Ndihmë me shkresa - dosa, RFPs, Kuvertën - të gjitha që gjëra të mira. Unë mendoj se ne kemi procesin tonë të mbjellin poshtë goxha të shtrënguar dhe të ngurta kështu që është mjaft e formulaic. Nëse ju jeni duke përdorur për dosa shkrim sot, Procesi ynë nuk do të jetë një sfidë për ju. RFPs - këto janë pak më e vështirë. Ata priren të jenë bërë me porosi në natyrë për të filluar me dhe RFPs tipike të tërheqë në shumë autorë të ndryshëm. Është dyja të mira dhe të këqija, por kryesisht e mirë. Kjo mund të merrni scrambly kur ne kemi nevojë të mashtroj nevojën për shërbimin e konsumatorëve të shkëlqyer, ndërsa gjithashtu duke u përpjekur për të fituar punë të re. Ju ndoshta nuk do të zotërojë një RFP, por ju do të kërkohet për të kontribuar seksione.
  • Sales thirrjet, por jo më afër. Në rrjedhën e një muaji, ju mund të presin për të shkuar në një çift të shitjeve quan me ekipin tonë të shitjes. Ju do të jetë i NVM-ve në dhomë, të marrë shënime dhe të ndihmojë japim zgjidhje. Megjithatë, ju nuk do të kërkohet ose pritet të trajtojë ciklin e shitjes nga fillimi në fund. Ju nuk keni nevojë për të "shitur,"Ju vetëm duhet të jetë i qetë zëri i arsyes ekspert në dhomë. Kjo ndërton besimin dhe besimin dhe kjo është arsyeja pse ju jeni atje. Sigurisht, në qoftë se ju pëlqen shitur, atëherë nuk ka vend për ju që të rritet edhe këtu.
  • Ndihmë me rekrutimin. Ne bëjmë të ketë disa lloj programi referues, kështu që nëse ju e dini se folks vërtetë të forta në komunitet që ju mendoni se duhet të jetë pjesë e sllallomin, ju mund të përfitojnë në këtë mënyrë. Ne kemi kushtuar rekrutuesit (të cilët janë të shkëlqyera) të bëjë pjesën e luanit të këtij lloji të punës. Ndihmë e vërtetë është intervistuar kandidatë - ata janë një përshtatje të mirë kulturore? A e dinë stuff e tyre? Ata mund të bëjnë * my * jetën më të lehtë? 🙂 Kjo vjen me shpejtësi, një herë çift në muaj, edhe pse në disa muajt e ju nuk do të bëni atë në të gjitha.
  • Të ndihmojë define praktikat më të mira, ndërtuar IP tonë dhe na bëjnë shumë konkurrues në treg. Ju jeni një djalë me përvojë / gal. Ju keni qenë rreth bllokut - jo vetëm në SharePoint, por ju keni përvojë në teknologjitë e tjera dhe jetoi me anë të mira dhe të këqija (edhe më e tmerrshme) Projekte të gjithë. Si rezultat, ju e dini se çfarë funksionon dhe çfarë jo. Ne do të duan që ju të ndajnë këtë përvojë me ne në një ditë në baza ditore në një kuptim taktike (i.e. drejtuar projektet tuaja të vërtetë mirë) por edhe strategjikisht. "Praktikat më të mira" është pak amortizuar si një afat dhe unë hezitoni të përdorin atë. Ideja themelore është që ju jeni të vijnë në si një person me përvojë me përvojë të thellë dhe të rëndësishme dhe ne duam që të integrohen mirë të learnings tuaj në mënyrën se si ne të angazhohen me klientët në një ditë në baza ditore.
  • Have fun - Ne jemi një bandë e integruar shumë. Unë dua të shmangur ende banalitet tjetër, por kjo është me të vërtetë të prirur në këtë rast - ne punojmë shumë (lloj nga) dhe ne të luajë edhe më e vështirë :). Ka një lloj Aaron Sorkin i tall këtu, dhomë është gjithmonë plot me njerëz të zgjuar, ne si pije tonë dhe ne të organizojë një numër të drejtë të ngjarjeve të fun - nata film, udhëtime baseball (edhe nëse ata janë i tmerrshëm, Ekipet praktikisht liga).

Në qoftë se unë mund të përmbledhur të gjitha në një fjalë, Unë do të përdorin "udhëheqjes". Fjalën çojë projekte, të marrë një rol udhëheqës në ndërtimin jashtë praktikën (IP, ndërtimin e ekipit), etj.

Por prisni! Ka më shumë! Pse tjetër punojnë në sllallomin?

  • Uniteti i shquar i qëllimit - të gjithë do të rritet këtë gjë jashtë. “This thing” is the New York office. Çdo njeri është në bord me këtë.
  • Era në velat tuaja - Zyrat e motra, Praktikat motra - Sllallomi është një "shërbim të plotë të" konsultuar organizatë. Unë të çojë deri praktikën SharePoint (një "Zona Praktika Lead" në zhargon sllallom). Unë kam praktikat motra në 11 zyra të tjera Sllallomi. Pra, edhe pse unë jam mbret aq sa SharePoint është i shqetësuar këtu në sllallom Nju Jork, Unë kam praktikat e bashkëmoshatarëve në Çikago, Seattle, Dallas, Atlanta, Boston, etj. nga të cilat unë mund të tërheqë mbi mbështetjen. Është me të vërtetë më të mirë të të dy botëve - autonomia e rëndësishme këtu në Nju Jork, por qasje në ton të talenteve të gjithë organizatën.
  • Wind në shitjet tuaja (2) - Ne bëjmë më shumë se SharePoint - shumë më tepër. We do BI, CRM, UX, këshilluese të biznesit, I lëvizshëm, zhvillimit me porosi dhe të tjerët. Ne jemi të mirë në shitjen e kryq midis nesh dhe ne jemi të mirë në pikturë - dhe më e rëndësishmja, dërgimin e mbi - një foto të "shërbimit" të plotë për klientët tanë. Kjo është veçanërisht tërheqës për mua. Unë kam qenë në Orgs shumë të vogla që punojnë në koncerte SharePoint dhe të frustruar mbi dhe mbi përsëri, sepse ne ishim pëllumb fshehur si "njerëz të SharePoint." Kjo nuk do të ndodhë me sllallomin dhe ne të merrni për të bërë punën më interesante, si rezultat.
  • Modeli Lokale - nuk ka udhëtimit.
  • Rritja afatgjatë - Slalom ka qenë duke shkuar gangbusters. Shumë e rritjes dhe stabilitetit. Rritja do të thotë gjithashtu se ne duhet të punësojë liderët sot në krye deri ekipe të reja si ne shtoni më shumë klientë dhe stafin për të mbështetur ato klientë.

Unë mund të shkoj në, but I’ve probably already gone on too long. Unë mendoj se kam kapur thelbin këtu. Nëse jeni duke menduar në lidhje me ndryshimin e vendeve të punës dhe kjo duket e mirë për ju, le të flasim.

Nëse ju jeni të lumtur në punën tuaj të tanishme - le të flasim gjithsesi :). Unë kam qenë në shumë vende dhe ishte shumë i "lumtur" në kohën. Sllallomi është e ndryshme dhe unë do të mirëpriste një shans për të bindur ju se.

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

Quick dhe Easy: Set Madhësia e artikujve në një kuti listë në një App Store Windows-

Në një App Store Windows-Unë jam duke krijuar, Unë dua për të treguar përdoruesit mesazhe të ndryshme informative.  I kap një listbox si mjet për të treguar atë mënyrë që ata të mund të lëvizni nëpër to dhe të gjitha këto gjëra të mira. 

Mesazhet janë vetëm informative, kështu që nuk ka nevojë për të siguruar që të gjithë whitespace ekstra rreth tyre që përdoruesit kurrë nuk mund të zgjidhni ato për asgjë.  Sjellja e parazgjedhur e listbox ofron një sasi të konsiderueshme të mbushje dhe kam kërkuar për të shpëtoj prej tij.  Well .... ju nuk mund të bëni atë gjë e tillë në listbox direkt.  MEGJITHATE, ju mund të bëni atë për sendet që ju të shtoni:

        privat pavlefshme AddGameStateLogMessage(varg theMessage)
        {
            TextBox t = i ri TextBox();
            t.Text = GameStateCounter     + ": " + theMessage;
            t.TextWrapping = TextWrapping.Wrap;
            t.MinWidth = 400;
            Trashësia thisPadding = i ri Trashësia(5, 0, 5, 0);
            t.Padding = thisPadding;
            t.FontSize = 12;

            ListBoxItem se = i ri ListBoxItem();
            li.Content = T;
            li.MaxHeight = 25;
            thisPadding = i ri Trashësia(5, 0, 5, 0);
            li.Padding = thisPadding;

            GameStateLog.Items.Insert(0,li);
        }

në lart, Unë jam duke krijuar a textbox dhe vendosjen font saj, mbushje e saj, etj.

Tjetër, Unë të krijojë një ListBoxItem dhe vendosur përmbajtjen e saj për textbox formatuar.

Më në fund, I futur ListBoxItem në listbox.  (Unë dua të tregoj mesazhet më të fundit në krye të listës, prandaj Insert(0,li) Shtoje në vend të një të thjeshtë() thirrje e muzës.).

Unë do të jetë kjo një tweaking pak para se unë jam vërtet i lumtur me sjelljen listbox por modeli treguar më sipër ka qenë shumë i frytshëm.  Shpresojmë se dikush tjetër e gjen atë të dobishme.

</fund>

undefinedAbonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin