Deployment of custom content type, forms, cqwp, and xsl. - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:20:33Zhttp://stackoverflow.com/feeds/question/132030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl2Deployment of custom content type, forms, cqwp, and xsl.mortenbpost2008-09-25T07:57:51Z2009-12-16T19:57:20Z
<p>Right now I have a visual studio project which contains a custom content type that I made. It also contains all the necessary files for making a sharepoint solution (wsp) file and a script to generate this. </p>
<p>Now, I would like to do 2 things. </p>
<p>First, I'd like to create a custom display form for the content type and include it in my solution so that it is automatically deployed when I deploy my solution. How do I include this in my solution and make my content type use it?</p>
<p>Secondly, you can query this type with the CQWP. I've thought about exporting it, adding more common view fields, and then modifying the XSL that is used to render it. How do I include this into my solution so that it is also deployed. I know i can export the CQWP webpart once it's all setup and include it in my project as a feature. But what abuot the XSL?</p>
<p>Looking forward to see your suggestions, cheers.</p>
<p>Did as described in the first answer. Worked like a charm.</p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl/146879#1468791Answer by Nat for Deployment of custom content type, forms, cqwp, and xsl.Nat2008-09-28T22:14:31Z2008-09-29T20:35:40Z<p>Use <a href="http://www.codeplex.com/stsdev" rel="nofollow">STSDev</a> to create the solution package.
That should help with creating the WSP. The custom form, CQWP webpart and the .xls file should also be deployable within the project.</p>
<p>To deploy the xslt, your feature will have an</p>
<p><code><ElementManifest Location="mywebpartManifest.xml"></code></p>
<p>This then points to a files such as</p>
<pre><code><Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="Yourfile.xslt" Url="Style Library" Path="" RootWebOnly="TRUE">
<File Url="yourfile.xslt" Type="GhostableInLibrary" />
</Module>
</Elements>
</code></pre>
<p>for the webpart:</p>
<pre><code><Module Name="myWebpart" List="113" Url="_catalogs/wp" RootWebOnly="FALSE">
<File Url="myWebpart.webpart" Type="GhostableInLibrary" />
</Module>
</code></pre>
<p>Now that file will need to be contained in the solution manifest.xml. This is done automatically from the STSDev project.</p>
<p>e.g.</p>
<pre><code><Resources>
<Resource Location="SimpleFeature\Feature.xml"/>
</code></pre>
<p>The actual schemas are:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa544502.aspx" rel="nofollow">Site</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms442108.aspx" rel="nofollow">Solution</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms414322.aspx" rel="nofollow">Feature</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointecm/thread/335399ea-f07f-43a5-a4e2-21d88ba2743e/" rel="nofollow">and a link to someone else with the issue</a></p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl/147876#1478760Answer by mortenbpost for Deployment of custom content type, forms, cqwp, and xsl.mortenbpost2008-09-29T08:07:40Z2008-09-29T08:07:40Z<p>But where in the folder structure do you deploy the form and the .xsl to?</p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl/169063#1690630Answer by mortenbpost for Deployment of custom content type, forms, cqwp, and xsl.mortenbpost2008-10-03T21:59:29Z2008-10-03T21:59:29Z<p>Very good thanks, I'll give this a shot.</p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl/313919#3139190Answer by Chris for Deployment of custom content type, forms, cqwp, and xsl.Chris2008-11-24T11:28:17Z2008-11-24T11:28:17Z<p>I have followed your guide and although it deploys the xslt to the feature in 12 Hive it does not place it in the correct style library folder</p>
http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl/1917244#19172440Answer by Daniel for Deployment of custom content type, forms, cqwp, and xsl.Daniel2009-12-16T19:57:20Z2009-12-16T19:57:20Z<p>You need to deactivate / reactivate the feature. This will give you any error messages that are associated with copying the file over. </p>