0
votes
0answers
210 views

Filter DataView on DispForm on MultiLookup field in Sharepoint Designer 2007

Following scenario: List A LookupListB (MultiLookup field containing values from List B) List B ID Title DataColumn Using the Sharepoint Designer I have added a DataView (DataFormWebPart) to ...
0
votes
0answers
320 views

DVWP drop-down not filtering connected Web Parts

I am having an issue with a DVWP drop-down not filtering connected web parts. I searched, but couldn't find previous questions. I apologize if this has been asked. I have a Data View Web Part that ...
0
votes
0answers
241 views

Sharepoint Foundation 2010: Using request paramete in data view does not work

I have following situation: I create a document library and each document is linked to one or more list items of 4 custom lists. I created a page like "detailListItem.aspx", where I want to display ...
0
votes
0answers
198 views

Sharepoint 2007 - filter data views on dispform.aspx

I've been playing around all weekend with this and have yet to solve it. I'm not allowed to use custom controls or C# on our sharepoint farm. I can use SPD and some (very little) javascript to my ...
0
votes
1answer
278 views

SharePoint DataView: How to combine data from multiple source columns into a single display column

I have a DataView web part which displays user information including address. The address is in multiple columns in the list (Address1, Address2, Street, City, Zip). I want to combine these fields and ...
0
votes
1answer
362 views

Setting up a Data View Conditional Format for MOSS 2007 that targets a specific group

I need to figure out a solution to allow only a specific group of users with permission to view a List Item in Editform.aspx. I created a custom form which would allow me to apply conditional ...
0
votes
3answers
1k views

calculate age in xslt from birthday

I have a variable caled Birthday which will have value like 1/1/1970. I need to calculate the age of a person based on that value. It would basically be the year from currentdate()-year from the ...
0
votes
1answer
296 views

Filtering Sharepoint Dataview using subjoin

I have the same question as Filter/search joined datasource dataview webpart which was asked about six months ago. This must be a common issue. Since sharepoint basically combines two dataview's ...
2
votes
1answer
2k views

Replace new line char with <br /> XSL

I have a Sharepoint list which I want to convert to a JSON via an XSL dataview. I have an XSL recursive replace function which I use to replace all special characters (escape backslash, double quotes ...
0
votes
1answer
417 views

Joining sharepoint 2007 lists in a web view based on a common key field

So - I'm making a data view that is to contain a list. This list has a field that will be used to match up against two other lists. If there is an entry for this value, it should show the value from ...
2
votes
1answer
2k views

Sharepoint XSL data view query string filtering

Lets say I have a list called events. Using SP Designer I can add a webpart to a page, select the events list, and a data grid with standard sharepoint controls and column filtering will be added to ...
0
votes
0answers
708 views

Filter/search joined datasource dataview webpart

Since sharepoint basically combines two dataview's when using a joined datasource, I'm unable to filter based on the second dataview (the child). I can filter either rows of the parent or rows of the ...
0
votes
1answer
681 views

SharePoint Designer Data view column as parameter

I am trying to find a way to show a column in a dataview that I may not know the field name of when creating the page, but will be selectable on the page as a parameter. I am creating a column on a ...
1
vote
1answer
769 views

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine. I have a ASP.NET Button I've placed inside a SharePoint DataView's ...
0
votes
1answer
675 views

SharePoint - Passing Dataview Row Arguments to a C# function from ASP.net button

I've done this with a asp.net Gridview. but does anybody have any examples on how to pass row information from an asp.net button in SharePoint Dataview rows to an inline C# function? the button ...
1
vote
1answer
1k views

How to add second data source to xslt / dataview in SharePoint?

I'm trying to create a bar chart using dataview formated using xsl. The list to chart contains data about number of hours spend on certain project. The project column is of type lookup, which points ...
0
votes
1answer
422 views

Moving Data Views Across Sharepoint Sites

We have a production SharePoint site that uses a custom database quite a bit. We have a dev site on a separate box where we develop all of our things then move them over to a live site when they are ...
0
votes
1answer
231 views

web part visible to admin

I have added a DataView Web part to a SharePoint. After making some customization The web part renders fine when I log in as an Admin, but with a reader account I don't none of the changes I've made ...
2
votes
1answer
126 views

DataView component in SPD attaches needless strings to field values

In SharePoint Designer I use some lists as sources and then link them together with an operation GetListItems (I fetch items from multiple lists on different site collections for rollup/aggregation): ...
3
votes
2answers
7k views

How to validate data input on a sharepoint form?

How does one verify a text field with another list's column? I am currently populating a Drop down list with a datasource and then comparing the text field with items in the dropdown using javascript. ...
3
votes
5answers
19k views

How to create a dataview In Sharepoint with data from a join query?

I have 3 Lists in Sharepoint. I want to create a dataview that is a join of 3 tables. Table1 is joined with Table2 on FieldA Table 2 is joined to Table3 on FieldB Table1 has duplicate values in ...
1
vote
2answers
2k views

How do I display default text if a Data View Web Part in Sharepoint has no data?

I am trying to use the Data View Web Part in Sharepoint. There are many articles on the web related to populating it with data. My question is, what if the data source is empty? Is there a way to ...
2
votes
3answers
6k views

SharePoint list.items.GetDataTable column names not match field names

I am binding an SPGridView to a SPList. As code samples suggest, I am using the following code to create a dataview based on the list. dim data as DataView = myList.Items.GetDataTable.DefaultView ...
9
votes
4answers
7k views

Is there a reference for the SharePoint XSLT extension functions?

There are a couple of different .NET XSLT functions that I see used in the out of the box SharePoint web parts (RSS Viewer and Data View web part). <xsl:stylesheet ...