How to restrict asset finder dropdown list in aem? - aem

I am trying to restrict asset finder dropdown to documents for a particular user group. Any pointers how to achieve it in AEM 6.4

Related

How to disable drag and drop of folders but not files in SharePoint online Document library?

I am using SharePoint online. I have a requirement, in the Document Library users are not allowed to drag and drop folders but they can drag and drop files.
If a folder is dragged I need to show a warning.
How can we achieve this? I was trying with SPFx but had no luck. Can I add event listener to detect folder drop before it is dropped?.
Any suggestion to achieve this would be really helpful
Not sure if this is achievable. You might want to have a look into this:
How can I disable the Document Library drag and drop function?
Also you can read this ms doc:
Information about dragging files into document libraries in SharePoint Server 2013 or SharePoint Online by using a web browser

Restrict grafana user from creating any new folder

We have several folders containing the dashboards. Each folder is meant for a specific team. The team-member can do what ever he/she wants to create within that folder only.
I know how to restrict a user to a particular folder but not sure how can I restrict a user from creating a new folder itself? For example if there are 5 teams and 5 folders (containing multiple Panels within them) in the Dashboard view, the user within any team shouldn't be able to create 6th folder in dashboard except the Admin.
Only Grafana Admins can create, edit, or delete folders.
See more info at Grafana documentation here.

Enable Translation for Record in Typo3

I'm using Typo3 8.7.24 and want to create an extension which creates news. I managed to create news records in the storage folder but i also want to make them translatable like in the attached screenshot. What do I have to do to enable it?
You probably forgot to translate the storage folder. You need to create a record of type "Alternative Page Language" there.
To do so, use the list module and add the record there.

livelink ECM: how to attach categories by default to documents

I created a catgory in Livelink ECM system and we need to attach this category to any document being uploaded to the system by default. We also need to show the attributes (of the attached category) while uploading the file. How is it possible?

Add custom metadata fields for DAM assets in a particular folder

I created custom metadata fields for DAM Assets in CQ 5.6.1 using the steps detailed here. However, as described in the document, these changed fields are available for ALL assets in the DAM.
I need these metadata fields to be made available to only a specific folder, say /content/dam/foo instead of every asset.
How can I achieve this?
In my knowledge, there is no straight forward way to achieve this but there is one trick to handle this.
AEM DAM has the notion of meta schema editors. These editors are tied to asset file type, meaning - jpeg, mov, etc. For an asset MIME type, you can define the meta data and its associated form.
AEM 6.0 provides choral UI interface to achieve this --
http://localhost:4502/libs/dam/gui/content/metadataschemaeditor/schemalist.html/dam/content/schemaeditors/forms
Am not aware of any such interface in AEM 5.6.1. The nodes tied to this are at /libs/dam/content/asseteditors/image/jpeg/formitems. You could overlay them at /apps to add the required metadata.
Coming to the question, the trick is to add the file type into your dam content hierarchy. Example - /content/dam/jpeg/foo, /content/dam/png/foo, etc. This way, you would get different metadata for different folders of the dam.
Adobe recommends this approach as AEM 6.0 introduced the concept of processing profiles which you could attach to folders. This way, your different file types could get different treatments.