Generic content list display
Hi,
I created a content type "Generic Content", when I add the widget "Generic content list 'I found all the elements of type" Generic Content ", is not possible to display all list but only a few items?
Hello Millaneli,
When you open Generic Content List control for editing you can set how many items will be shown per page. This can be done through ItemsPerPage property which you can access from ControlDefinition > Views > GenericContentMasterView
The default value is 20. If you have more than 20 items and you use the default settings you will not see them in the list.
Greetings,
Ivan Dimitrov
the Telerik team
Hi Ivan,
May be poorly expressed, I have 5 tag (Weahter, airport, flag, plane and Steering). I wanted to use only (Airport and plane). How can I do?
Hello Millaneli,
You have to filter the control by tag or category. Please check this forum post Get documents by tag
Greetings,
Ivan Dimitrov
the Telerik team
Hello Ivan,
Yes, that's what I want but how can I find the tag’s ID??
Hi Millaneli,
You can get them programmatically
var taxaList = newList<ITaxon>();
var manager = TaxonomyManager.GetManager();
var categoriesTaxonomy = manager.GetTaxonomy(TaxonomyManager.TagsTaxonomyId);
taxaList.AddRange(categoriesTaxonomy.Taxa);