I want to author a tag in page properties of all the pages present under one node. It's very difficult to open page properties of each page and author the tag.
Can it be done by using bulk editor?
I want to author a tag in page properties of all the pages present under one node. It's very difficult to open page properties of each page and author the tag.
Can it be done by using bulk editor?
like your thought .https://www.thebloglisting.com/category/places/
thanks for your question. I think you can use google search console then you can track your traffic
Was trying to create maven-archtype-13 project, Getting exactly same error again, any idea?
When I hit "Index of /groups/public " in browser, i can see page loading though.
Was trying to create maven-archtype-13 project, Getting exactly same error again, any idea?
When I hit "Index of /groups/public " in browser, i can see page loading though.
Thanks
it is possible to define num format for a variable
for example var a1 = NumericField1.rawvalue & var a2 = NumericField1.rawvalue var total = a1 + a2 (num format, z,zz,zz,z9.99)
this.rawValue = " My Score" + total;
i tried many ways but always failed.
WASIL Thank you for the quick reply. Our key rollover frequency is set to 9,999 days (~ 27 years), but we still see the above activity on a regular basis. Any help on how to stop it would be really appreciated.
Hi.
I want to track users who has completed the booking process via counting "booking success" page.
I found the traffic number is less than actual number recored in system.One case maybe occurs when user arrived "booking success" page and jump to another page immediately, but analytics haven't fired Beacon to server.
How can I solve this problem?
This is great very sought after. In my case; how would this apply if the field in question was the current day? In other words; a field within a paragraph which contains a field and therein displays only the current day along with the suffix? Similar to what one would display prior to a signature field. Signed this _______ day of [and i have the rest of the dates done already].
I assume the code 'this.rawValue = "My Score " + total' is in a calculate event of a field? You could try adding a display pattern to that field of
num{'My score ' z,zzz,zz9.zz}
Then the calculate event code would just be 'this.rawValue = total'
There are any other way to define format under varible script
Is AEM completely xss secure. I know using HTL makes sure that you're protected from xss. But what about ajax calls? Responses returned from Servlets?
In other words, are there areas or flows where it's up to the site developer to implement xss protection mechanisms?
Thanks.
You could use a text field instead of a numeric field and create the desired string by joining parts.
; FormCalc $ = Concat("My score ", Sum(NumericField1, NumericField2))
//JavaScript this.rawValue = "My score ".concat((NumericField1.rawValue + NumericField2.rawValue));
Hi manvig66636792, Not sure if you have the same issue as others had on this thread. The fix I provided was for mainly for 6.4 and not tested for 6.5. Adobe included this fix for their next release which might have got released in September. So you can check the latest service pack or cumulative fix pack available and see if it still works.
Some other context :
Please check if in the page properties of your root page you have configured the /conf/<configuration> in the advaced tab else it will point to the old location from /etc. If its possible to create a video and upload to a drive or dropbox can you share a link of how you configured it so I know you didn't miss anything.
Also read through the above comments and make sure you have the same issue as others else it could be something else which needs to be looked upon.
The link for daycare ticket is logged with a company account so you won't be able to see without proper credentials.
Cheers,
Timmy Mathew
shubhamg94002854, does it work for you? Could you mark it as Answered or Unanswered so others know if this issue is fixed or not ?
Cheers,
Timmy Mathew
All questions are practical hands on based. One has to prepare with focus to get it through.
Dispatcher is a must I would say. Read through it deeply and understand, it will for sure help in certification and as well as in your actual project.
You can use FormCalc to convert the date into words.
Put in into the exit event of the date field.
if (not $.isNull) then var input = Date2Num($.formattedValue, "DD.MM.YYYY") var day = Choose(Num2Date(input, "D"), "First", "Second", "Third", "Fourth", "Fifth", "Sixth", "Seventh", "Eighth", "Ninth", "Tenth", "Eleventh", "Twelfth", "Thirteenth", "Fourteenth", "Fifthteenth", "Sixteenth", "Seventeenth", "Eighteenth", "Nineteenth", "Twentieth", "Twenty-first", "Twenty-second", "Twenty-third", "Twenty-fourth", "Twenty-fifth", "Twenty-sixth", "Twenty-seventh", "Twenty-eighth", "Twenty-ninth", "Thirtieth", "Thirty-first") var month = Num2Date(input, "MMMM") var year = WordNum(Num2Date(input, "YYYY"), 0) TextField1 = Concat(day, " ", month, " ", year) endif
MAGIC Worked.
Thanks a lot.
You can use util.printf
e.g.
util.printf('%,0.2f', 12345.67)
will give you
12,345.67