How To Specify People as a Search Scope / Content Source Using 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: تابع() {

        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: تابع (result) {

در مورد من, 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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

تلفن مثال شیرپوینت REST

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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

دسترسی سریع و آسان: ایجاد یک REST شیرپوینت سایت با استفاده از

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>
        <فلش>Site Name:</فلش>
        <فلش><ورودی نوع="text" نام="SiteName" شناسایی="SiteName" /></فلش>
    </TR>
    <TR>
        <فلش colspan="2">
            <ورودی نوع="submit" شناسایی="CreateSiteButton" ارزش="Create the Site" />
        </فلش>
    </TR>
</جدول>
</مرکز>

<خط src="../Plugins/jquery-1.11.0.min.js"></خط>

<خط>
ور CreateSiteLogicContainer = {

    createSiteData: {
            "parameters": {
                __metadata: { "type": "SP.WebInfoCreationInformation" },
                آدرس: "Paultest1",
                عنوان: "Paultest1",
                شرح: "rest-created web by Paul!",
                زبان: 1033,
                WebTemplate: "sts",
                UseUniquePermissions: غلط
            }
    },

    createSite: تابع () {

        jQuery.support.cors = درست;

        CreateSiteLogicContainer.createSiteData.parameters.Url = $("#SiteName").وال();
        
        $.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").وال()
            },

            data: JSON.stringify(CreateSiteLogicContainer.createSiteData),

            success: تابع () { هوشیار("success"); },
            خطا: تابع () { هوشیار("error"); }

        });
    },

    wireUpForm: تابع () {
        $("#CreateSiteButton").click(تابع () {
            هوشیار("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").وال().  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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

غلبه بر مشکل آزار دهنده با آدرس های نسبی در شیرپوینت دسترسی سریع

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:', ‘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. برای حل آن, get some JavaScript and jQuery onto the page using your favorite technique and with a line of code like this:

 

$(سند).آماده( تابع () {

    $("a:contains('Test URL replacement')").click(تابع () { هوشیار("changed click behavior!"); برگشت غلط;});

});

And Bob’s your uncle.

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

The .click(تابع() 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.

</پایان>

undefinedمشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

سریع و ساده: SharePoint REST Call Only Returns 100 Records

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مشترک شدن در وبلاگ من.

من در توییتر در 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/'>                     
      <برگریز>{C712E2EA-54E1-47AD-9D99-1848C7773E2F}</برگریز>                     
        <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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

 

ذخیره ساز انسان فقیر در جاوا اسکریپت

[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.  You قوطی 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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

چگونه به: پیکربندی تست واحد و پوشش آزمون با QUnit.js و Blanket.js برای دفتر 365 شیرپوینت برنامه

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 اچ تی ام ال>
<اچ تی ام ال xmlns="http://www.w3.org/1999/xhtml">
<head>
    <عنوان>QuizUtil test with Qunit</عنوان>
    <پیوند rel="stylesheet" عکاس هنگام عکسبرداری="../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", تابع () {
            ور 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;&پیداکنید;Some text&LT;/DIV&پیداکنید;", "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>

</بدن>
</اچ تی ام ال>

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!

Summary (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 <خط> برچسب
  • 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مشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

تاریخ و زمان آخرین لباسی که شما همیشه می خواهید بپوشید?

[توجه داشته باشید سریع - این یک پست بسیار طولانی در یک شغل برای گروه من در اینجا در نیویورک است و شما نیاز به در منطقه سه حالت زندگی می کنند اگر شما علاقه مند هستید.]

من مشاوره اسلالوم بیش از پیوست 18 ماه پیش و این باعث می شود این طولانی ترین شغل پایدار من از 2007. من آن را که راه برنامه ریزی. قبل به یک رشته از کار رقص است که با جهش من به شیرپوینت جهان آغاز شده, من در یک مکان به مدت یازده سال بود. من بالاخره جدید, مکان پایدار برای مسافت های طولانی کار می کنند در اینجا در اسلالوم.

این مکان در حال رشد است و من نیاز به برخی از کمک به کنترل که. نوع کمک من نیاز است که معمولا به نام "شیرپوینت راه حل های معماری" اگر چه من پیدا کردم کلمه معمار و / یا نادرست در فضای شیرپوینت برای مدتی استفاده می شود در حال حاضر. من تلاش کرده ام در مورد چگونه به وبلاگ در این مورد. من نمی خواهم به سادگی لیست از یک دسته از نقاط گلوله در تاس ها / سبک هیولا. من هم رده استخدام عالی انجام شده است که در حال حاضر :). پس, من تصمیم گرفتم به "روز در زندگی" رویکرد. آن را بخوانید و در نظر گرفتن:

1) اگر آن استیناف و

2) این که آیا شما در استخوانهای شما می دانید که شما می توانید آن را انجام دهید.

اگر بله, تماس با من (paul.galvin @ slalom.com) و اجازه دهید بحث در.

این همان چیزی است که شما می توانید انتظار به انجام این کار در هفته / ماه معمولی به عنوان یک معمار راه حل در تیم من:

  • اجرای پروژه, اغلب بیش از یکی در یک زمان. برخی از پروژه های بزرگ می باشد و به همین ترتیب شما می خواهم خود را که یک پروژه. "در حال اجرا" پروژه این بدان معنی است که شما باید نظارت و مسئولیت برای کیفیت کلی از تحویل. تقریبا در هر مورد شما یک PM و یک تیم واقعا قوی از devs, BAS, مردم UX, غیره, کمک به شما. اما شما خواهید بود چهره اصلی مشتری می بیند, تراست, غیره. پنهان در سایه، در این نقش وجود دارد :). شما این زمان بیل و هدف این است که برای نگه داشتن شما به اندازه کافی مشغول به انجام این کار 80 درصد از زمان.
  • راهنما با کاغذ بازی - نمی کارد, RFPs, عرشه مخصوص ماشینها ممنوع - که همه چیزهای خوب. من فکر می کنم ما باید روند افشانده ما پایین بسیار تنگ و جامد پس از آن نسبتا فرمولی. اگر شما در حال به خروس نوشتن استفاده می شود امروز, روند ما این است که نمی شود یک چالش برای شما. RFPs - این کمی سخت تر. آنها تمایل به قرار دادی در طبیعت برای شروع و RFPs به طور معمول در چند نویسندگان مختلف بکشد. هر دو خوب و بد, اما عمدتا خوب. این می تواند در زمانی که ما نیاز به حقه بازی نیاز برای خدمات به مشتریان عالی در حالی که همچنین تلاش را به نفع خود کار جدید scrambly. شما ممکن است نتوانید یک RFP خود را ندارد اما از شما خواسته خواهد شد که به کمک بخش.
  • تماس فروش, اما نه نزدیک. در این دوره از یک ماه, شما می توانید انتظار در یک زن و شوهر از فروش تماس با تیم فروش ما. شما SME در اتاق, یادداشت برداری و کمک به شکل دادن به راه حل. اما, شما خواسته نمی شود و یا انتظار می رود که مسئولیت رسیدگی به چرخه فروش از آغاز تا پایان. شما لازم نیست به "فروش,شما فقط نیاز به صدای آرام عقل کارشناس در اتاق. این ایجاد اعتماد و اعتماد به نفس و به همین دلیل شما وجود دارد. البته, اگر شما می خواهم به فروش, پس از آن اتاق را برای شما به رشد در اینجا بیش از حد وجود دارد.
  • راهنما همراه با استخدام. ما نوعی از برنامه ارجاع, بنابراین اگر شما می دانید مردمی واقعا قوی در جامعه ای که شما فکر می کنم باید بخشی از اسلالوم, شما می توانید که راه بهره مند شوند. ما استخدام اختصاص داده شده (که عالی هستند) برای انجام سهم شیر را از این نوع کار. کمک واقعی است مصاحبه نامزدها - آنها مناسب فرهنگی? آیا آنها مسائل خود را می دانم? آیا می توانم آنها را به * من * زندگی راحت تر? 🙂 This comes in spurts, چند بار در ماه, اگر چه در چند ماه شما می توانید آن را در همه کار را انجام ندهید.
  • کمک به تعریف از بهترین شیوه ها, ساخت تا IP ما و ما را رقابتی تر در بازار. شما مرد با تجربه / گهل. نه فقط در شیرپوینت - تو در اطراف بلوک بوده است, اما شما باید تجربه در فن آوری های دیگر و از طریق زندگی می کردند خوب و بد (حتی خیلی بدی رو پشت سر گذاشت.) پروژه ها در سراسر. به عنوان یک نتیجه, شما می دانید چه کار می کند و چه چیزی نیست. ما شما می خواهید برای به اشتراک گذاشتن تجربه را با ما در یک روز به روز پایه در یک حس تاکتیکی (i.e. اجرای پروژه های خود را واقعا خوب) بلکه استراتژیک. "بهترین شیوه" کمی بیش از حد مورد استفاده به عنوان یک واژه و من دریغ از آن استفاده کنید. ایده اصلی این است که شما در آینده به عنوان یک فرد با تجربه با تجربه عمیق و مرتبط و ما می خواهیم به ادغام بهترین آموخته های خود را به که ما چگونه با مشتریان درگیر در یک روز به صورت روز.
  • از آن لذت ببرید - ما یک دسته بسیار یکپارچه. من می خواهم برای جلوگیری از دیگری پیش پا افتادگی, اما آن واقعا مناسب است در این مورد - ما کار سخت (مرتب کردن بر اساس) و ما بازی حتی سخت تر :). نوع Sorkin هارون گفتگوی بورسی در اینجا وجود دارد, اتاق همیشه پر از افراد باهوش, ما دوست داریم نوشیدنی ما و ما سازماندهی عادلانه از وقایع سرگرم کننده - شب فیلم, سفرهای بیس بال (حتی اگر آنها ناگوار, تیم عملا بد).

اگر من می تواند از آن را در یک کلمه خلاصه, من می خواهم از کلمه "رهبری". استفاده از پروژه های سرب, نقش سرب در ساختمان از عمل (IP, ایجاد تیم), غیره.

اما صبر کنید! تر وجود دارد! چرا دیگری کار در اسلالوم?

  • وحدت قصد قابل توجه - هر کس می خواهد به رشد این چیزی که از. “This thing” is the New York office. هر کس حق دارد در هیئت مدیره با این.
  • باد در بادبان خود را - دفاتر خواهر, شیوه های خواهر - اسلالوم "خدمات کامل" سازمان مشاوره است. من منجر عمل شیرپوینت ("تمرین منطقه سرب" به اصطلاح اسلالوم). من شیوه های خواهر 11 سایر دفاتر اسلالوم. بنابراین حتی اگر من پادشاه تا آنجا که شیرپوینت در اینجا را در اسلالوم نیویورک مربوط می شود هستم, من شیوه های همکار در شیکاگو, سیاتل, دالاس, آتلانتا, بوستون, غیره. که از آن من می تواند بر حمایت از قرعه کشی. این واقعا بهترین از هر دو جهان - استقلال قابل توجه در اینجا در نیویورک اما دسترسی به تن از استعداد در سراسر سازمان.
  • باد در فروش خود را (2) - ما بیش از شیرپوینت - خیلی بیشتر. We do BI, CRM, UX, مشاوره کسب و کار, سیار, توسعه سفارشی و دیگران. ما خوب در فروش متقابل در میان خودمان و ما در نقاشی خوبی هستید - و مهمتر از, ارائه بر - "" تصویر خدمات کامل برای مشتریان ما. این امر به ویژه برای من جذاب. من در بسیاری از orgs های کوچکتر کار بر روی کنسرتهایی شیرپوینت بوده است و نا امید بارها و بارها از آنجا که ما کبوتر پر از سوراخ به عنوان "مردم شیرپوینت." که با اسلالوم اتفاق نمی افتد و ما را وادار به انجام کارهای جالب تر به عنوان یک نتیجه.
  • مدل محلی - بدون سفر.
  • رشد بلند مدت - اسلالوم جریان بوده است gangbusters های. بسیاری از رشد و ثبات. رشد همچنین بدان معنی است که ما نیاز به استخدام رهبران امروز به سر تا تیم های جدید را به عنوان ما اضافه کردن بیشتر مشتریان و کارکنان به حمایت از این مشتریان.

من می توانم, but I’ve probably already gone on too long. من فکر می کنم ذات دستگیر کردیم. اگر شما در حال فکر کردن در مورد تغییر شغل و این به نظر می رسد خوب برای شما, اجازه دهید بحث در.

اگر شما در شغل فعلی خود را خوشحال - اجازه دهید بحث در هر حال :). من در بسیاری از مکان بوده است و در آن زمان بسیار "خوشحال" بود. اسلالوم متفاوت است و من می خواهم یک شانس برای متقاعد کردن شما از آن استقبال.

</پایان>

undefinedمشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin

دسترسی سریع و آسان: تنظیم اندازه از یک آیتم در یک لیست باکس در فروشگاه App ویندوز

In a Windows Store App I’m creating, I want to show the user various informational messages.  I picked a ListBox as the tool to show it so that they can scroll through them and all that good stuff. 

The messages are informational only, so there’s no need to provide all that extra whitespace around them since the user can never select them for anything.  The default behavior of the ListBox provides a substantial amount of padding and I wanted to get rid of it.  Well …. you can’t do that sort of thing on the ListBox directly.  HOWEVER, you can do it to the items you add:

        خصوصی از درجه اعتبار ساقط 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,لی);
        }

in the above, I’m creating a TextBox and setting its font, its padding, غیره.

بعد, I create a ListBoxItem and set its content to the formatted TextBox.

سرانجام, I insert the ListBoxItem into the ListBox.  (I want to show most recent messages at the top of the list, hence the Insert(0,لی) instead of a simple Add() invocation.).

I will be tweaking this a bit before I’m really happy with the ListBox behavior but the pattern shown above has been very fruitful.  Hopefully someone else finds it helpful.

</پایان>

undefinedمشترک شدن در وبلاگ من.

من در توییتر در http://www.twitter.com/pagalvin