The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
305 views

Remove LI wrapper from Content Query Web Part / ContentQueryMain.xsl

I have done a fair amount of experminting with this but cannot get it to work and I'm now looking for pointers or working examples. I want to customise the output of the Content Query Web Part to ...
0
votes
4answers
825 views

Trouble with IF formula

We have a task list with a column that categorizes tasks into one of 12 categories. We're trying to calculate a NEW column that will be populated with one of two values, "Technical" or "Procedural" ...
2
votes
1answer
309 views

Wiki Syntax to Create Child Page From Current Page

This seems like it should be a very simple task/question. We are currently on SharePoint 2007. I am in the process of editing a particular department's Wiki page, so imagine the breadcrumb to the ...
0
votes
1answer
269 views

Output of SharePointWebControls:LookupField inside an <a> Tag?

I have a lookupfield which is containing an E-Mail Adress and want to have it inside an Tag. How is this Possible? Like: <a href="mailto:<SharePointWebControls:LookupField ...
3
votes
1answer
189 views

Where can the [%= %] dynamic token syntax be used?

I am looking at the old REPORTCENTER onet.xml file in SharePoint 2010's 14 hive (SharePoint Root). I noticed the following in this file: <Configuration ID="1" Name="Blank"> ...
1
vote
5answers
1k views

for vs foreach when iterating over SPWebCollection

I was just wondering which of the two methods below is more popular, when it comes to iterating over a collection of SPWeb objects. for (int i = 0; i < SPContext.Current.Site.AllWebs.Count; i++) { ...