I'm creating the list based on custom list template. List is creating, but the custom list template is not applied for my list.

ListTemplate template = null;
ListTemplateCollection ltc = context.Site.GetCustomListTemplates(context.Web);
context.Load(ltc);
context.ExecuteQuery();  

foreach (ListTemplate t in ltc)
{
    if (t.InternalName == "STPDiv.stp")
    {
        template = t;
        break;
     }
}

ListCreationInformation info = new ListCreationInformation();
info.Title = "TestCreation";
info.TemplateType = template.ListTemplateTypeKind;
info.TemplateFeatureId = template.FeatureId;           
info.QuickLaunchOption = QuickLaunchOptions.DefaultValue;
site.Lists.Add(info);
context.ExecuteQuery();

Please correct my error in the above code. Thanks in adv.

link|improve this question
Firstly you're not null checking the template object, so you may well not have actually gotten the template you're after. Secondly that doesn't look like a list template name to me. – GavinB Mar 4 at 2:59
feedback

1 Answer

Try this code given below. It should work for you. Let me know if you encounter any problem.

        ClientContext context = new ClientContext("<Your Site URL>");
        Web site = context.Web;            
        context.Load(site);
        context.ExecuteQuery();

        //Create a List.
        ListCreationInformation listCreationInfo;
        List list;

        listCreationInfo = new ListCreationInformation();
        listCreationInfo.Title = "<Your Title>";
        listCreationInfo.Description = "<Your Description>";

        ListTemplate listTemplate = site.ListTemplates.First(listTemp => listTemp.Name == "<Your Template Name>");
        listCreationInfo.TemplateFeatureId = listTemplate.FeatureId;

        list = site.Lists.Add(listCreationInfo);
        context.ExecuteQuery();

As per Microsoft : http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.listcreationinformation_members.aspx

TemplateFeatureId = Gets or sets a value that specifies the feature identifier of the feature that contains the list schema for the new list

link|improve this answer
This one almost worked for me. All I needed to add was listCreationInfo.TemplateType = listTemplate.ListTemplateTypeKind; – Jorge Carvalho May 17 at 3:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.