a configurable view of data in a list

learn more… | top users | synonyms (1)

0
votes
1answer
192 views

Disable modal dialog in view with group by

I'm creating a solution using SharePoint 2010 that contains a list (list1) with a lookup column (list2_column) to another list (list2). The main view for list1 is grouped by list2_column. Both lists ...
1
vote
0answers
63 views

Making a view readonly?

I have a module that deploys a site page "Archives". I want to set up this page to show the content of a list readonly, whatever permissions are granted to the connected user. I have build this ...
0
votes
2answers
468 views

CQWP or default list view webpart

I have bunch of document libraries for Sales site collection. These doc libs are by Year. These are going to be read only records. By default the list view displays everything. No filter needs to be ...
0
votes
1answer
348 views

Getting an error while trying to open a list using Excel [closed]

Hi Iam getting an error like "An unexpected error has occurred. changes to your data cannot be saved " while I was trying to open a list using excel (after clicking export to Excel in Ribbon).
0
votes
0answers
87 views

Umlaut in view names

I created views with PowerShell and based on a XML-configuration file like this: $list.Views.Add($viewName, $spViewFields, $strQuery, 3300, $True, $default , "HTML", $False) All parameters are ...
1
vote
1answer
90 views

Pro/cons: Multiple lists or one big list with multiple views?

I have data that can go through different stages, during which it will have common fields and fields that are only used on specific stages. If I e.g. have these fields: CommenField1, CommenField2, ...
0
votes
1answer
231 views

Editing a SharePoint List View: Grouping by 2 Columns with 1 column empty

I have the following data in a Sharepoint list. Name Animal Species Tom Dog Corgi Dick Dog Corgi Harry Dog German Shepherd Jane Cat (BLANK) June Cat (BLANK) ...
0
votes
1answer
310 views

Can I manage views based on permissions in OOTB Foundation 2010?

As problem fixes are implemented, we are uploading additional or modified documentation and procedures to a sharepoint site where our employees can review those changes. We've got another sharepoint ...
1
vote
0answers
371 views

Can't deploy a xslt webpart as expected

In one of my custom list schema, I have defined a custom view : <View Type="HTML" DisplayName="My wonderful view" BaseViewID="2" ...
0
votes
1answer
153 views

Modify default view in code to add group by

As per title, is it possible (and how) to modify default view in code so that it display contents of the list grouped by one of it's columns? I tried the following: defaultView.Query = ...
1
vote
3answers
1k views

SharePoint multiple list view depending on pemission for user

Is there a possibility way to make a permission to list view depending on user groupa can see view1 only groupb can see view2 only
0
votes
0answers
237 views

How to “link” two ListViewWebPart to look at the same RootFolder programmatically

I have a webpart which contains 2 ListView Web Part: one of them has a view that shows folder, the other one the docs. The code I've written is this: private ...
0
votes
0answers
70 views

Budget request and fund deduction

I am working on a SharePoint Team site (SP 2010) that needs to take in a fund request, have it approved, and once it is approved, ultimately deduct the total fund from a limited budget. I am having ...
0
votes
1answer
68 views

What part of this code references my library's “view”?

SharePoint 2010 is limits the selection control for a list/library's view in a webpart to the first 50 available. I need to select view # 5x... What part of the code below can I edit to make the ...
2
votes
1answer
596 views

Why aren't custom views displaying recurring appointments properly?

We have two recurring events in a SharePoint calendar. The first recurs every two weeks beginning Jun 05, 2012, and the second recurs every two weeks beginning Jun 10, 2012. The Jun 05 meeting is ...
0
votes
2answers
194 views

Provision a ListView to a already existing list

How do you with CAML provision a View to a already existing list? I know how to add views through list definitions.
0
votes
0answers
110 views

How to manage permission on a SharePoint list and views?

I have a share point list "Student Master" with 10 columns. Created two views from this list Student Master1 and Student Master2. Now facing issues with permission. There are three user groups- ...
1
vote
3answers
231 views

Change column value in view(Custom list, No code)

I have created a custom list with column "Approved", it is a drop down box with 3 value. 1. Select 2. Yes 3. No In the view, in "Approved" column I want to display "Pending" in the place of ...
3
votes
1answer
429 views

Using part of date in CAML query

I want to create new view for my list. The list contains a column called Year, which is a number and contains, as name suggests, year. Eg.: 2012 2011 2010 2009 I would like create a view, where I ...
0
votes
1answer
831 views

How to remove duplicates from a sharepoint view?

I have a sharepoint views containing different items but according to the columns displayed in my view, those items are the same: A B C D A B C D A B C D A B C E That I would like to display like: ...
0
votes
0answers
418 views

How to remove duplicates from a SharePoint view?

I have a SharePoint view containing different items, but according to the columns displayed in my view, I have duplicates: A B C D A B C E A B C E A B C E And I would like to only have: A B C D ...
0
votes
0answers
85 views

How to mantain View across document libraries

I had a custom list which has some Custom Views created.. If I go and modify a View by Web Interface in List1, List2 doesn't show that modify.. Is there any way to do this? In event handler I cannot ...
0
votes
0answers
221 views

Blog default view - remove comments

I'm trying to remove comments link from post in sharepoint 2010 blog. I found out that there is a section in blog.xsl in 14 hive responsible for that. After commenting out that section, I was able to ...
1
vote
1answer
997 views

SharePoint - Showing folders in a filtered view

I have a library with a few folders in it, and the files in the folder have a "Status" property and an "Assigned To" field. I want to make a view with the following logic: If (Content Type == ...
1
vote
0answers
167 views

How to get to control rendered by Sharepoint dynamically?

In a view (by default AllItems.aspx) of a list "Inline Editing" enabling at design time in SPD2010 renders green-cross image-button at run time. Its pressing at run-time adds a new line How can ...
0
votes
0answers
125 views

Custom default view of a list is redirected to phantom page - how to remedy it now and avoid this in future?

In a list (named "Delivery") I created a new view Forms.aspx (by copying defalt View AllItems.aspx), made it default, heavily modified but after running it (from SPD 2012 by F12 or directly from a ...
3
votes
1answer
554 views

Show Ribbon Button on all types of Lists

I want my custom ribbon button to show in all list views. I found this example: How do you create a Ribbon Button custom action that will appear on all kinds of lists However, this also shows the ...
0
votes
1answer
397 views

Creating a custom View for List with custom UI

I'm trying to create a custom view for a list with custom UI. The following is my code: list.Views.Add("List View", coll, Query, 10, true, false); list.Update(); SPView view = list.Views["List ...
2
votes
1answer
1k views

Display a custom column from a blog list in a summary view

I have created a blog using sharepoint 2010 I added a few new column using sharepoint designer List-post-add new column. Of couse each post I edit and added the content to the extra field. ...
1
vote
0answers
90 views

Powerful list filtering

I need to extend the functionality of the default list (specifically for a document library) to include more powerful filtering. This includes being able type free text search and to have filters ...
0
votes
1answer
130 views

How to toggle in SharePoint 2010 between views

How can the SharePoint 2010 users toggle between the various views per list without using the List tab ribbon?
1
vote
1answer
139 views

Restrict entries in SharePoint view

I have created a custom list in Sharepoint 2010 with below columns. Name(Single line of text) Location(Single line of text) Manager(Single line of text) Joining(Radio button with Yes/No values) In ...
0
votes
3answers
421 views

Is that possible to use != in query string?

I am filtering sharepoint list using query string for some reson i need to check condition like FieldValue!=Red is that possible to achive? Or still its limitation? ...
0
votes
1answer
228 views

List item field values incorrect in AllItems view, but correct in detail view

I've created a custom content type and a list definition and list instance based on it. In a web part, I add an SPListItem to the list, set its field values, and then call item.Update(). However, ...
0
votes
2answers
566 views

Add a new column to all existing views

Is it possible to add a new column to all existing views of a list or I have to do manually for each view?
1
vote
1answer
178 views

Max possible views on a custom list

I'm creating a custom list which needs 70 differents views on it (one for each users, this number may be bigger in the futur). I know there was a 50 views limit in SP2007 (you could have more, but no ...
1
vote
1answer
719 views

Sharepoint 2010 Excel - Extra fields in export xls

I have a view of about 80 fields (base from a list of about 200 fields) that I want to export into excel but the export shows up with extra fields (fields that are being used in some of the calculated ...
1
vote
3answers
2k views

Brand a List View Web Part

How would I go about changing the layout of a List View Web Part? Instead of listing items in a boring column format I would like to do something like this: [Title] by [Author] of [Publication] on ...
1
vote
1answer
220 views

Show Last Viewed date in a View

I understand enabling Auditing at a Content Type or Document Library level allows you to run reports to determine when documents are opened or downloaded (last viewed). Is there a way to show this ...
0
votes
2answers
2k views

Show SharepointList content based on Query String

I need to create a sharepoint page that will show the data from diferrent SharePoint list in a single view based on user selection. If the user want to view info about Employee the Page will display ...
0
votes
1answer
771 views

Using a list view to filter another list view

I have two lists; List A and List B. List B has a lookup column to List A. I want to filter List B based on the value in the field that looks up A. This can of course be done using the default OOTB ...
2
votes
1answer
60 views

Call entire list, 2000 items at a time?

If I need to store say 10,000 items in a list, but want to call them sequentially 2000 items at a time, what is the best method for doing that? I assume it's similar to a paged call, but want to ...
1
vote
0answers
229 views

Multi-value fields — how to get totals?

I apologize if the answer to this is obvious, I'm just completely new to SharePoint and need at least a pointer in the right direction. I have a list with a "Choice" field. I've used InfoPath to ...
2
votes
1answer
962 views

How to modify a schema.xml of an existing list

I have a solution deployed, with custom lists. And i would like to modify the schema.xml to have a new view, without deleting the list i already have. I've first created the new views in the ...
0
votes
1answer
203 views

Losing Custom Formats on a List/View

We created a custom list/view in SharePoint 2010. After we created the list/view we went into SharePoint Designer and changed the title of the view, the font color and size, etc. Next we deployed ...
0
votes
1answer
619 views

Display for Custom Field in List View

This post is the same as Override the custom field rendering in a list view, but I don't have the ability to ask a question to an answered post. I was hoping Stuart Pegg could elaborate on his ...
0
votes
1answer
325 views

DispForm with child data view

I have two related lists. I have a parent list and a child list, the child list has a column that stores the ID of the parent list. In the parent's EditForm I added a dataview of the child list, and ...
0
votes
0answers
645 views

Overriding built-in field rendering template

I want to override the rendering of the built-in ContentType field for lists in display mode. I have read several articles/tutorials on the subject and all agree I should create a custom xsl template ...
0
votes
1answer
60 views

web part view without the selection button

I am trying get a look and feel like central admin resource list view wp. I created exactly same type list and populated. But my list view does not have bullets and when I hover over the link it gives ...
1
vote
2answers
831 views

Document Set and Document Set Content Columns

I have created a Document Set (with 10 columns) and added a Document type (with 11 columns) to the set. I have shared all but one Columns between the two. Now, I would like to hide the 11th column on ...

1 2 3 4 5 8