Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..

cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Object to freeze the text at top

GulabSingh
Contributor II

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.  

2 ACCEPTED SOLUTIONS

Accepted Solutions

I forgot to add Sys.Application.add_load

<script> 
     Sys.Application.add_load(function() {
          $('.CompletedDiv > span').append(" - My Text");
     });
</script>

 

 Advisory Consultant

View solution in original post

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

View solution in original post

5 REPLIES 5

DavidPetty
Archer Employee
Archer Employee

@GulabSingh something like this should work.

<script>
     $('.CompleteDiv').append("Your text here');
</script>

 Advisory Consultant

GulabSingh
Contributor II

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

GulabSingh
Contributor II

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

I forgot to add Sys.Application.add_load

<script> 
     Sys.Application.add_load(function() {
          $('.CompletedDiv > span').append(" - My Text");
     });
</script>

 

 Advisory Consultant

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