vote up 0 vote down star
1

Background

I've written a feature to make it easier for users to e-mail a document, like this SO question. I've implemented the solution according to this answer.

The feature's custom action adds a Send As Attachment option to the ECB menu of a document library:

ECB menu

When a user chooses Send As Attachment, they are redirected to this Send Document application page:

Application page

Requirement

Add an icon to the right of the 'To' and 'CC' fields. When this is clicked, it needs to open the user's Outlook Global Address List:

Global Address List

Once the user has chosen their recipients and clicked OK, the form should be populated with their choices. The form can then be submitted by clicking Send.

What I've Tried

SpreadsheetLauncher Control

The best way of doing this seems to be James Conard's solution of using the SpreadsheetLauncher Control from SharePoint's client-side API. Unfortuantely his code is no longer available for download (dead server) although I have tried e-mailing him. On the plus side, there is a reasonable example in the SDK here.

Using the SDK example I have been able to make the GAL dialog display. However once OK is clicked, Internet Explorer hangs for up to 30 seconds with the screen partially redrawn. When it returns, nothing has changed on the page and the DOM hasn't been updated with the dialog's selections.

I also have the problem of the given example being contained within an HTML form tag. Being an ASP.NET page, there is already a form tag on the page. I've tried using jQuery's AJAX functionality (which I've never tried before) to get around this and nothing seems to happen. I don't know how to pass through the form parameters correctly.

Ideas?

Has anyone else tried doing something like this solution and had success that they can share? Are there any other ideas on how this could be approached? (Note: purchasing a product isn't an option.)

Thanks in advance.

Update: The people picker control isn't an option because some users do not exist in MOSS' Active Directory import. Hence the need for displaying the Outlook GAL.

Update 2: I've ruled out the SpreadsheetLauncher control entirely. It doesn't appear to work correctly in MOSS 2007 at all and is only referenced by one out-of-the-box file but not used by it. The other disadvantage is its requirement on ActiveX which isn't a big deal inside the company but something I would prefer to avoid. I'll probably go with Sam's suggestion.

flag

2 Answers

vote up 0 vote down check

Do you really need the Outlook address book control in particular, or just the values in the GAL that Exchange knows about? If it's the latter I suspect you could gin up a reasonable UI to call the ResolveNames Operation that's part of the Exchange web services. If SOAP isn't your thing and OWA is available to you, you could try an approach that uses more REST-style calls to OWA.

link|flag
The link to ResolveNames looks wrong. Should be msdn.microsoft.com/en-us/library/… or msdn.microsoft.com/en-us/library/… ? – Alex Angas Aug 7 at 11:33
Good catch, thanks. I changed the link. Must have fat-fingered the cut and paste or something (probably too many windows open). – Sam Yates Aug 13 at 12:52
This is the approach I ended up using. Will post code and details on my blog soon at alexangas.com/blog – Alex Angas Sep 2 at 13:38
vote up 0 vote down

Alex One Simplest option I can think of is that instead of having the Text box for the email Address in Send Document page you have a People picker control and and use that to fetch the email id of the selected user.

link|flag
Unfortunately not everyone is available through the people picker. Use of the GAL in some way is required. Updated the question now, thanks for your answer. – Alex Angas Jul 22 at 13:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.