この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hi All,
Some of documents url have space in them, I want to encode them in sightly it is possible to do so.
I have tried using context uri but that also did not worked
${properties.jcr:title @ context='uri'}
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
You can use JavaScript Use API,, assume this code is present in file name first.js
"use strict"; use(function () { eurl = encodeURI(this.url); return eurl; });
and call this via
<sly data-sly-use.info="${'first.js' @ url=properties.jcr:title}"> <h1> ${info} </h1> </sly>
Are you documents present in AEM? If yes, I guess you wont have space in url as they will get replced by hypen '-'
You are you showing just document name or make hyper links on them? let me know...
表示
返信
いいね!の合計
These documents are not present inside AEM
表示
返信
いいね!の合計
You can use JavaScript Use API,, assume this code is present in file name first.js
"use strict"; use(function () { eurl = encodeURI(this.url); return eurl; });
and call this via
<sly data-sly-use.info="${'first.js' @ url=properties.jcr:title}"> <h1> ${info} </h1> </sly>
Thank you, Yes I can do something like this.
表示
返信
いいね!の合計