Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>There is one way... It's complex and ugly - but it should work :)</p> <p>It is possible for you to write you own view for at list (HTML, JavaScript and all). The VWSTYLES.xml file in the C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\GLOBAL\XML folder, contains the HTML and JavaScript for the default SharePoint view styles - getting your inspiration from this, you can create your own view style, where you can do anything you want!</p> <p>The problem is, that SharePoint don't have any way to deploy your custom view style - this is where the ugly part comes in - you have two options for deploying your view style.</p> <ol> <li><p>Add you code directly to the VWSTYLE.xml/Edit a copy of it and override it with a feature</p> <p>Pros: </p> <blockquote> <p>You will still be able to edit the view from the SharePoint interface</p> </blockquote> <p>Cons:</p> <blockquote> <p>You override a default SharePoint file - your work can be overridden by a SharePoint update.</p> <p>Your view style will be available on every list in SharePoint.</p> </blockquote></li> <li><p>Create your view programmatically on the list</p> <p>Pros:</p> <blockquote> <p>You don't override any default SharePoint files.</p> <p>You can control which list uses your view</p> </blockquote> <p>Cons:</p> <blockquote> <p>You wont be able to edit the view thru the SharePoint interface</p> </blockquote></li> </ol> <p>I've used method 2 a couple of times myself - and it works... but it's not pretty! :)</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload