Jan Posted March 23, 2015 Report Share Posted March 23, 2015 Hi, I have a question. Is it a possible, on Details page, to create a button "Next" instead of arrows "Previous"-"Next"? I do not need the "Previous", only the "Next" button. So, I need to hide arrows "Previous"-"Next" too. Thank you for your time! Quote Link to comment Share on other sites More sharing options...
0 iren Posted March 23, 2015 Report Share Posted March 23, 2015 Hello Jan, To create the 'Next' button instead of arrows in the 'Details' report, you can use next script in footer: <a id='next'> <img src='button_image.gif'> </a> <script> var linktonext=document.getElementsByName("JumpToNext"), navBar = document.getElementsByClassName("cbFormNavigationTable")[0], nextButton = document.getElementById("next"); navBar.style.display='none'; if(linktonext.length){ nextButton.href= linktonext[0]; }else{ nextButton.style.display = 'none'; } </script> Note: The "Navigate to next/previous records" option should be selected for the 'Details' report. Hope it helps. Quote Link to comment Share on other sites More sharing options...
Question
Jan
Hi,
I have a question.
Is it a possible, on Details page, to create a button "Next" instead of arrows "Previous"-"Next"?
I do not need the "Previous", only the "Next" button. So, I need to hide arrows "Previous"-"Next" too.
Thank you for your time!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.