21
Create a Business Solution, Step by Step, with No Managed Code Christian Ståhl & Marc D Anderson

SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Embed Size (px)

DESCRIPTION

with Christian Ståhl In this session, you will learn how you can devise powerful solutions from beginning to end without deploying any managed code with two of the biggest proponents of this approach. We’ll take a business problem and go through the actual solution in SharePoint 2013, but we’ll dip into SharePoint 2010 as well to see how the solution might work there and discuss how we might approach things differently. You’ll get the solution in a WSP as well as the underlying code.

Citation preview

Page 1: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Create a Business Solution, Step by Step, with No

Managed CodeChristian Ståhl & Marc D Anderson

Page 2: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Who Is Christian?• Senior SharePoint Consultant, Humandata.• Web designer and Web developer since mid 90s, before art

student. Wide-ranging career in SharePoint since the early days, consulting and training.

• Three-time awardee of the Microsoft MVP award for SharePoint Server (2011, 2012, 2013).

Page 3: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Who Is Marc?• Co-Founder and President of Sympraxis Consulting LLC, located

in the Boston suburb of Newton, MA, USA. Sympraxis focuses on enabling collaboration throughout the enterprise using the SharePoint application platform.

• More than 30 years of experience in technology professional services and software development. Over a wide-ranging career in consulting as well as line manager positions, Marc has proven himself as a problem solver and leader who can solve difficult technology problems for organizations across a wide variety of industries and organization sizes.

• Three-time awardee of the Microsoft MVP award for SharePoint Server (2011, 2012, 2013).

Page 4: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

About this shared session• We have collaborated and discussed different kinds of SharePoint

solutions using client coding through the years and share the same deep passion for data view web parts and jQuery solutions in SharePoint.

• For this SEF, we thought it would be fun to set up a typical business problem and see how we could solve this with no managed code and how we could tackle this from our different perspectives.

Page 5: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Tutorial Overview

• In this session, you will learn how you can devise powerful solutions from beginning to end without deploying any managed code with two of the biggest proponents of this approach. We’ll take a business problem and go through the actual solution in SharePoint 2013

Christian Ståhl
Should we remove this red text, or do you plan to set up something in 2010 as well?
Page 6: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

What Are the Available Tools?SharePoint

2010SharePoint

2013

Cascading Stylesheets (CSS)Extensible Stylesheet Language (XSL)JavaScript / jQueryData View Web Parts (DVWPs)Content Query Web Parts (CQWPs)Workflows (SharePoint Designer)Display TemplatesContent Search Web Parts (CSWPs)

Page 7: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Cascading Stylesheets (CSS)

• Usually not seen as part of the coder's toolset

• Modern Web development relies on a firm understanding of CSS

• Necessary to add animations and useful client side behaviors

• Used in tandem with scripting and DOM manipulation

Page 8: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Extensible Stylesheet Language (XSL)

• Used in Data View Web Parts, Content Query Web Parts

• Not most people's favorite data formatting tool

• Might be considered outdated• Moving away from XSL toward client

side rendering (jQuery, Knockout, many more)

Page 9: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

JavaScript / jQuery

• SharePoint has always used JavaScript• jQuery is "supported"• Taken Web development by storm• Most modern Web sites rely heavily on scripting• More and more integration with SharePoint,

especially in SharePoint 2013

Page 10: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Data View Web Parts (DVWPs)

• Processed on the server• XSL-driven• Can "join" multiple data sources• Useful not only for displaying data, but also for building

forms• Can roll up content across the Site Collection using

DataSourceMode="CrossList"• Much harder to work with in SharePoint 2013 (SharePoint

Designer missing Display View)

Page 11: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Content Query Web Parts (CQWPs)

• Processed on the server• XSL-driven• Long-time workhorse of Web Parts• Enables rollup of content across the Site Collection• Predefined formats can be extended but somewhat

cumbersome to do so• A lot of filter options; for example on content type,

metadata and audience targeting

Page 12: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Workflows

• Right up front: neither of us are big fans• Great for frequent, repetitive tasks; information work

tends to be highly exception-driven• Often used to get around things that are seen as

SharePoint limitations• Sometimes can use script to accomplish similar things• Can be unreliable

Page 13: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Display Templates

• New in SharePoint 2013• JavaScript-driven• Might be the new DVWP?• Documentation is not great

Page 14: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Content Search Web Parts (CSWPs)

• New in SharePoint 2013• "Soon" available on Office365• Display Template driven• Depends on indexing schedule• Continuous crawling helps, but not a

panacea

Page 15: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

What Can’t [Shouldn't] You Do Without Managed Code?

• Deploy files to the server’s file system• Event Receivers• Timer Jobs• Elevate Permissions• Deployment of a large number of sites or

other objects

Page 16: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Client Side vs. Server Side

• Contrary to some reports, client side development is not always a good thing

• Be careful when you have large data volume, mathematical processing, etc.

• You must know the "Lowest Common Denominator"

Page 17: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Development Must Also Follow Good Governance Practices

• Coding practices• Deployment mechanisms• Testing methods• Documentation• Training• Maintenance planning

Page 18: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

To our Demo

• Let’s take a look at concrete business problem.– A employee award nomination system– Let’s say that our goal is to find an easy way to store,

submit and report on nominations submitted by various users – how can we do that?

Page 19: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

Employee Award Nominations• First thought… Maybe we can use a SharePoint list and create a submission form

using InfoPath. Exporting the list to Excel would allow the admins the necessary level of reporting they should be looking for.

• The team’s requirements is in this example are fairly basic. Automatically populating a few fields using user profile services is necessary but should not be any problem. There is one requirement that held us up. If the fictive customer wants to limit how many submissions any one user can do AND provide a current count of how many submissions that user had made on the form.

• We could use another list with users and a count of their nominations combined with a workflow to either add a new user to the list or add 1 to the current count for an existing user on the list. The form would reference this secondary list to provide the count display on the form.

• But wait: there has got to be an easier way, right?

Christian Ståhl
I have rewrited this pretty much, please take a look at it and correct misspelling, grammar etc
Page 20: SEF2013 - Create a Business Solution, Step by Step, with No Managed Code

WE LIKE SIMPLE SOLUTIONS!