Hello,
I'm new to the world of SharePoint development, though I have developed many applications on a variety of platforms (from Windows MFC to Java to PHP). I am not super-familiar with ASP.Net or the hundreds of sub-tools and versions that that exist, so I'm kind of flailing trying to figure out how to do a simple ( ) task.
I'm trying to change the layout of a list view so that the items are displayed as a stack of boxes, instead of a table. Is it possible to do this in SharePoint Designer If so, am I supposed to edit templates Create new Views What is it called so I can find the right help topic
Looking in the code view for a page in SharePoint Designer, I've found some code that looks like this:
<snip>
ctx = new ContextInfo();
ctx.listBaseType = ]]></HTML><ListProperty Select="BaseType"/><HTML><![CDATA[;
ctx.listTemplate = ]]></HTML><ListProperty Select="ServerTemplate"/><HTML><![CDATA[;
ctx.listName = ]]></HTML><ScriptQuote><List/></ScriptQuote><HTML><![CDATA[;
ctx.view = ]]></HTML><ScriptQuote><GetVar Name="View"/></ScriptQuote><HTML><![CDATA[;
ctx.listUrlDir = ]]></HTML><ScriptQuote><ListUrlDir ServerRel="TRUE" URLEncodeAsURL="TRUE"/></ScriptQuote><HTML><![CDATA[;
<snip>
I've mucked about in this code, and managed to find the CAML statements used to generate the tables and was able to make some minor formatting changes (like removing the table header and changing table row styles).
However, I'm pretty sure this is not how one is supposed to edit the layout. Can someone please tell me where this code is generated, and what file(s) I need to change to, for example, change the look and feel of specific fields, change the layout from tabular to div-based, and so forth
is SharePoint designer even the right tool for this job
Thanks,
Anca.