SDK - with Documents

Posted by Community Admin on 05-Aug-2018 18:28

SDK - with Documents

All Replies

Posted by Community Admin on 03-Aug-2011 00:00

Hi,
from my custom widget I need to create a new document, and I need to select all documents into a specific library.
Here is my code for the select and it's not working:
            var asset = from p in App.WorkWith().Documents()
                        where p.Library.Title == "Assets"
                        orderby p.Title
                        select p;

How I can create a new document and listing all documents into a specific library?
Thanks,
Julie

Posted by Community Admin on 08-Aug-2011 00:00

Hi Julie,

Here is how you get list of the documents in a specific library(libraryName)

publicIContent GetContentItem( stringname )
        
            IContent content = null;
   
            stringlibraryName = string.Empty;
            libraryName = GetLibraryName();
   
            var docs = from p inApp.WorkWith().Documents()
                       where ( p.Parent.Title == libraryName ) &&
                       ( p.Visible == true) && ( p.UrlName.ToLower() == name.ToLower() )
                       orderby p.Title
                       select p;
   
            docs.LoadAllItems();
               
            List<IContent> items = newList<IContent>();
   
            foreach( IContent item indocs.Get() )
            
                content = item;
                break;
            
   
            returncontent;
        

To create a document follow the example in the documentation.

All the best,
Stanislav Velikov
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

This thread is closed