Revision: 59695
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 26, 2012 05:06 by rumremix
Initial Code
<WebPartPages:DataFormWebPart runat="server" IsIncluded="True" AsyncRefresh="True" FrameType="None" NoDefaultStyle="TRUE" ViewFlag="8" Title="DataView 1" PageType="PAGE_NORMALVIEW" __markuptype="vsattributemarkup" __WebPartId="{231F0ACE-32B2-4179-AE6B-07242197C9EE}" id="g_231f0ace_32b2_4179_ae6b_07242197c9ee"> <DataSources></DataSources> <datafields/> <XSL> <xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:cmswrt="http://schemas.microsoft.com/WebPart/v3/Publishing/runtime" exclude-result-prefixes="xsl cmswrt x" > <xsl:import href="/Style Library/XSL Style Sheets/Header.xsl" /> <xsl:import href="/Style Library/XSL Style Sheets/ItemStyle.xsl" /> <xsl:import href="/Style Library/XSL Style Sheets/ContentQueryMain.xsl" /> <xsl:template match="/"> <xsl:text disable-output-escaping="yes"> <![CDATA[ <script type="text/javascript"> alert("you can use javascript"); </script> <strong>HTML Content</strong> ]]> </xsl:text> </xsl:template> </xsl:stylesheet> </XSL> </WebPartPages:DataFormWebPart>
Initial URL
Initial Description
With jQuery and SPServices, we have very powerful tools for accessing and manipulating Sharepoint data and precisiely contolling the presentation, entirely from the client side. But such solutions generally need to be either hard-coded into pages or require cumbersome content editor pastes or includes. The advantage of packaging a solution as a web part is that it is a breeze to drop it anywhere on the site. Using the technique below you can package up a purely HTML/JavaScript solution as a web part, combining the benefits of both. 1. Create the HTML/JS content that you would like to turn into a web part in the manner you are most comfortable with 2. Create a dummy page in the site to initially hold our xslt 3. Open site in Sharepoint Designer 4. Find the page created in step 2, detach it from the page layout (by right clicking it), and open it for editing. 5. Place your cursor before the closing < /ContentTemplate > or closing < /asp:Content > tag 6. Paste the code in the source block below. 7. Find Title="DataView 1" in the code you pasted and replace it with Title="MoreUsefulWebPartName" 8. Replace the contents between the opening and closing ![CDATA tags with the HTML and/or JavaScript you created in step 1 9. Select all of the new code, starting with and including the opening WebPartPages:DataFormWebPart tag and ending with and including the closing /WebPartPages:DataFormWebPart tag 10. Switch from code view to designer view. You may ignore any warning you see about missing data sources. 11. Click the web part tab 12. In the "Save Web part" section, select the manner in which you would like to save the new web part. 13. Give the web part a useful name 14. Once you make the new web part available in the web part gallery, users may now add your javascript solution to any page as they would any other web part.
Initial Title
How to create a sharepoint data form web part that uses only client side JavaScript
Initial Tags
form, javascript, data, web, sharepoint
Initial Language
XSLT