Create a list based on a list definition template

I have a list definition in my solution and I want to programmatically create a list based on that list definition, can anyone tell me how to do this?

<ListTemplate
    Name="Mylise"
    Type="10778"
    BaseType="0"
    OnQuickLaunch="TRUE"
    SecurityBits="11"
    Sequence="410"
    DisplayName="My new List"
    Description="My own list"
    Image="/_layouts/images/itgen.png"/>

      

+3


source to share


2 answers


try
{
  SPList list = null;
  using (SPSite site = new SPSite("http://yoursite/"))
  {
     using (SPWeb web = site.RootWeb)
     {
      //List Will be Created Based on this ListDefinition
- OOB Custom List Definition
      //00BFEA71-DE22-43B2-A848-C05709900100

        foreach (SPList _list in web.Lists)
        {
          if (_list.Title.Equals("TestList"))
          {
              list = _list;
          }
        }

        if (list == null)
        {
         web.AllowUnsafeUpdates = true;
         Guid listID = web.Lists.Add("TestList", //List Title
                      "This is Test List",      //List Description
                      "Lists/TestList",         //List Url
                      "00BFEA71-DE22-43B2-A848-C05709900100", //Feature Id of List definition Provisioning Feature – CustomList Feature Id
                       10778,                     //List Template Type
                     "101");      //Document Template Type .. 101 is for None

           web.Update();
           web.AllowUnsafeUpdates = false;

         }
        }


     }
    }
    catch (Exception ex)
    {

    }

      



Hope this is helpful to you :)

+6


source


Call

var customTemplate = yourSPWeb.ListTemplates["Mylise"];

      

to get the list template object, then



yourSPWeb.Lists.Add("List title", "List description", customTemplate);

      

to create a list.

+11


source







All Articles