Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

codingStar
codingStar
Offline

Badges

Badges
16

Accepted Solutions

Accepted Solutions
3

Likes Received

Likes Received
14

Posts

Posts
44

Discussions

Discussions
14

Questions

Questions
30

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by codingStar
Customize the badges you want to showcase on your profile
AEM fulltext search result order - Adobe Experience Manager 16-10-2019
I am working on below scenarioWe have few PDFs file in damSearch any keyword and if that keyword found in any PDFs then show that in result listI am able to achieve the above using functionality by using fulltext search in DAM. below is the querySELECT * FROM [dam:Asset] AS a WHERE CONTAINS(a.*, '" + searchKeyword+ "') AND [jcr:path] like '/content/dam/mywebsitefolder/%'Now next requirement is 3. Sort the list of result based on number of occurrence of "searchKeyword" found in pdfs.For example :...

Views

4.5K

Like

1

Replies

7
Re: Not getting result from .txt from dam - Adobe Experience Manager 09-10-2019
Hi @arpitv27529355 @ka786 I have figured it out. jcr:mimeType was incorrect on below path for generated file stream./content/dam/myprojectfolder/mytextfile.txt/jcr:content/renditions/original/jcr:contentTo fix this updated the code provided mimeType as "text/plain", below is the codeAssetManager assetManager=resourceResolver.adaptTo(AssetManager.class);assetManager.createAsset(fileName, stream, "text/plain", true);

Views

1.2K

Likes

0

Replies

0
Re: Not getting result from .txt from dam - Adobe Experience Manager 09-10-2019
I have verified all the nodes and properties/values are same.

Views

1.1K

Likes

0

Replies

0
Not getting result from .txt from dam - Adobe Experience Manager 09-10-2019
Hi,I m getting result if I am upload a .txt file in dam manually. below is the querySELECT * FROM [dam:Asset] AS s WHERE CONTAINS(s.*, '" + mykeyword+ "') AND [jcr:path] like '/content/dam/myprojectfolder%'but in second case if I created .txt file in dam using stream(which i am getting from some external system) then above query is not returning any result.anyone share why i am not getting result in second case.Thanks

Views

2.1K

Likes

0

Replies

5
Re: Run modes - Adobe Experience Manager 02-08-2018
In your project you have OSGi services and you different environment (eg LOCAL/DEV/QA/STAGE/UAT/PROD) for AEM Author and Publish. Now suppose you want different configuration values for each environment then in that case you can create run mode like config.localconfig.DEVconfig.QAconfig.STAGEconfig.UATconfig.PRODand put xml file under these folder.

Views

5.4K

Likes

0

Replies

1
Re: How do i hide the page name in touch ui sites.html - Adobe Experience Manager 06-07-2017
Hi, I did not find this file/libs/granite/ui/components/coral/foundation/clientlibs/foundation/css/layout/columnview.css in crx/de.I am using AEM 6.2.0 SP1.

Views

1.1K

Likes

0

Replies

0
Re: How do i hide the page name in touch ui sites.html - Adobe Experience Manager 06-07-2017
Its client requirement, they don't want to visible both Name and Title.Is there any way we can hide page name?

Views

1.1K

Likes

0

Replies

0
How do i hide the page name in touch ui sites.html - Adobe Experience Manager 05-07-2017
Hi,I am using AEM 6.2.0 SP1,I have create pages for my website but when i view these page in http://localhost:4502/sites.html/content/mywebsiteboth the name and the tile of page visible.How do i hide page name (refer above image the highlighted section)??

Views

2.3K

Likes

0

Replies

6
How add new style class for Cell Properties in richtext' table plugin in touch ui dialog - Adobe Experience Manager 05-07-2017
Hi,I am AEM 6.2 SP1.I want to add a new style for table's cell style refer below image of dialog. I have tried this https://docs.adobe.com/docs/en/aem/6-2/administer/operations/page-authoring/rich-text-editor.html#Styles (Tables and Table Cells)but i am not able to achieve this.Can you provide some link or any solution to achieve this touch ui dialog.

Views

3.0K

Like

1

Replies

3