A list definition defines a schema for a SharePoint list. It contains information on what views are being used, which columns and content types are being used, and other metadata information.
1
vote
1answer
465 views
Set Event Recurrence ShowInNewForm programmatically
I have a custom list template based on the "Calendar" default list template with the "Recurrence" field disabled. In my case, disabled means ShowInNewForm, ShowInDisplayForm, and ShowInEditForm ...
0
votes
1answer
355 views
External CT Related Lists - Examples - CAML - LINQ to SharePoint
I'm trying to return related data via External Content Types. I was wondering which is better to use, CAML queries or LINQ to SharePoint? I'm fine with writing CAML queries besides the relating part ...
0
votes
1answer
503 views
List Schema Modification Effect
I have created a list using schema.xml and then i have created a list instance.
later on i need to to add one column in the list schema which is not shown in the existing list instance. any idea how ...
2
votes
1answer
431 views
List instance not working after solution retraction
I have a project with a
Content Type
A list definition based on the
Content Type
A list instance
When I deploy this solution, it all works fine.
To my knowledge, when this solution is retracted, ...
1
vote
1answer
161 views
Why can't a Managed Metadata field be sealed?
I am creating a custom list definition that contains Managed Metadata fields (TaxonomyFieldType). These taxonomy fields are !important so users should not be able to delete them through the UI. I ...
1
vote
0answers
847 views
Pagination and group by for Custom views created using list definition not working
I created a list using the list definition + list instance from VS 2010. I also created the list views for the list. When I add Group by and paging properties for custom views other than All Items ...
3
votes
3answers
1k views
Display an SPFieldUrlValue property from a BCS Model
I have a pretty simple BCS model:
public Guid Id { get; set; }
public SPFieldUrlValue Url { get; set; }
public string Description { get; set; }
public string Owner { get; set; }
public DateTime ...
2
votes
3answers
5k views
Creating a document library list definition in visual studio 2010
In visual studio 2010 I create a new empty sharepoint project. I then add a new list definition selected document library as the type of list. It generates the def and I then change the type in the ...
1
vote
1answer
3k views
List Definition and List Instance in SharePoint 2010
What is List Definition and List Instance in SharePoint 2010?
0
votes
2answers
265 views
How to tell all the differences between 2 SharePoint lists?
I have 2 SharePoint servers (2007) a staging and production server. Both have the same list but now that the test server is undergoing a few changes, the fields are somewhat out of sync. Is there an ...
1
vote
0answers
480 views
ListInstance not firing all item event receivers [closed]
I have a feature that defines a number of list instances to provision whenever a new site is created using a particular site definition. The list template for one of these instances has an item event ...
0
votes
2answers
525 views
How do I create a Forms Library feature with a custom list definition?
I'm working on a prototype SharePoint site at the moment where a forms library has been created with an InfoPath form published to it. A content type has not been used, the form is bound directly to ...
2
votes
2answers
969 views
Changing site/list definitions post-production
There have been several questions asked on this site regarding the best way to provision sites and lists (definition schemas vs. templates vs. the object model vs. the web interface vs. provisioning ...
3
votes
0answers
487 views
Custom list defintion with OrderedList property [closed]
I've created a custom list in SharePoint 2010 from a custom content type (inherit from item) and I would like to give the users the option to order the items in this list - similar to how users can ...