custom-lists

How can I add a link to the SharePoint "create" page?

I have a custom feature, and I'd like to link to that functionality from a link on the "Create" page -- the create.aspx page that you get to from the Site Actions menu. I'd be happy to do this either declaratively within my feature's element manifest or programmatically in some feature activation code, but I have no idea if it's possibl...

Auto Number Column in SharePoint List with Link to Item

There was a similar question posted regarding the same topic, but I'm adding to the question and the previous discussion was resolved. Here is the link to the original question: http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/606872#606872 I'm now trying to find out if in a Custom List in MOSS SharePoint...

How do I handle child lists and get new object lists in C# using LINQ?

I have a LINQ query which gives me a list with a number of child lists all with double values. I want to get a queryResult from this. How can I get the first, the last, the highest and the lowest double value? Should it be a new object and should the new return values be a list? ...

Customise a SharePoint List Form into Sections/Tabs/Pages

I have a SharePoint solution which uses a list with around 20 different pieces of data. I would like to be able to break these up into sections/pages/tabs so that the user experience in populating and editing these is not so poor. I know how to use SPD (SharePoint Designer) to customize list forms and was wondering if anyone knew of a ...

Sharepoint and multiple workflows

I am designing a workflow for an absence request at my company. The problem is that whenever I to test the workflow, I don't know if it is SD or MOSS, but it creates a new instance of the workflow. It looks like this: Workflow Name (click to change settings)-----------------Workflows in Progress Review Absence-------------------------...

Creating "Append-Only" Comment Field in Custom SharePoint List

I am relatively new to SharePoint, working with WSS SharePoint 2.0. The "Issues" list template contains an "append-only" comment column. The great thing about this append-only comment column is that it saves a history of the comments entered every time you save, and it clears out the comment field for the next time you edit the item. ...

C# Comparing Two Custom Lists

I have run into a situation where I need to compare two different lists to each other and I am wondering what the best method is for doing this? I thought something like this would work but it doesn't and I can't figure out why. The Linq query is returning records it shouldn't. This is my first run at trying to figure something like t...

How to create SharePoint Site definition with custom lists using WSPBuilder?

Hello, I'm using WSPBuilder and I want to create a site definition this site definition contains some custom list definition (some list creates based on "Custom List" template). The site contains also some files the will copied to _layouts folder (which I know how to include it the .wsp file). My request here is how i can create the site...

Sharepoint Custom List code-behind not invoked on a embedded page

I have written a custom list in sharepoint, with the onPreRender method populating the list via a webservice. The list needs to stay updated everytime it is rendered. When the list is viewed via the Lists-> MyList , the allitems.aspx is called and my code behind (a WebpartPage) gets called and the list is updated. But if i embed the li...

Building "isolated" and "automatically updated" caches (java.util.List) in Java.

FOR ANYONE INTERESTED: I have implemented the code for the behaviour I am looking for and open-sourced it on google-code. Get it here! pojo-mvcc -- Hi Guys, I am trying to write a framework which contains a lot of short-lived caches created from a long-living cache. These short-lived caches need to be able to return their entier conte...

Custom list: EditText consumes list's OnItemClickListener

Hi everyone, I've been implementing a number of custom-lists, all worked fine. Now I'm trying to add an EditText to the list's rows. The rows look like that: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height=...

How do I stack duplicate custom list to master list in Sharepoint?

I have duplicate list and I would like that to have rolled up to master list. Any possibilities without using code? ...

Better way of comparing two lists with LINQ ?

I have the 2 collections: IEnumerable<Element> allElements List<ElementId> someElements, What is a concise way of doing the following together: [1] Verifying that all elements in someElements exist in allElements, return quickly when condition fails. and [2] Obtain a list of Element objects that List<ElementId> someElements maps t...

How to show CustomAction on a certain Custom List

Hi, How can I show a CustomAction for a List of "Custom List" type and it's Title is "Demo List"? Is this possible? if not is there any workaround to achieve what I want? ...

Sharepoint 2010 add Note Board to Custom List

Is it possible to add a note board or other web parts to a Custom List? I would like to be able to have comments on list items. ...