Download Link Widget

Posted by Community Admin on 03-Aug-2018 22:41

Download Link Widget

All Replies

Posted by Community Admin on 21-Jan-2011 00:00

Is there any way to filter documents shown in the Download Link Widget by categories, tags etc.

Posted by Community Admin on 24-Jan-2011 00:00

Hi sacparker,

I suppose you mean Download list control.
The required functionality is not supported out of the box by the Download list designer but it is already logged as a feature request. For now, you could use the following workaround:

  1. Click Edit to open Download list designer
  2. Open Advanced mode
  3. Click ControlDefinition button
  4. Click Views button
  5. Find the required view and open its properties (for example MasterListView)
  6. Set FilterExpression property to:
Visible = true AND Status = Live AND Category.Contains((cb581378-aba5-49f8-9ec6-08b868c42042))

The identifier in the brackets represents the category id and could be found in sf_taxa table in your database:

SELECT        id, nme, title_
FROM          sf_taxa
WHERE        (nme = 'Cars')

   7. Click Save to apply the changes

Let us know if this helps.

Best wishes,
Pepi
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed