Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2024-09-04 11:01 AM
Can anyone help me with a Custom Object which can be used to write a text in a questionnaire right at the top where counting happens.
2024-09-04 11:42 AM
I forgot to add Sys.Application.add_load
<script>
Sys.Application.add_load(function() {
$('.CompletedDiv > span').append(" - My Text");
});
</script>
Advisory Consultant
2024-09-04 11:43 AM
There's plenty of examples of this on the internet, but here's one How To Create a Scroll Back To Top Button (w3schools.com)
Advisory Consultant
2024-09-04 11:20 AM
@GulabSingh something like this should work.
<script>
$('.CompleteDiv').append("Your text here');
</script>
Advisory Consultant
2024-09-04 11:30 AM
I need text to be displayed right after the "0 of 12 Completed" at the top.
With the provided custom object I was unable to see anything
2024-09-04 11:32 AM
Also is there a way we can create a button when clicked record will be moved at the top. We have long questions and many tabs. So this feature can help end users.
Thanks for helping
2024-09-04 11:42 AM
I forgot to add Sys.Application.add_load
<script>
Sys.Application.add_load(function() {
$('.CompletedDiv > span').append(" - My Text");
});
</script>
Advisory Consultant
2024-09-04 11:43 AM
There's plenty of examples of this on the internet, but here's one How To Create a Scroll Back To Top Button (w3schools.com)
Advisory Consultant