How to enable the "Up & Down" arrows in lists
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2018 01:11 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2018 01:26 AM
Hi Mazin,
The arrows show up on form when you pull record from a list view that has more than 1 record. If a user pulls up the record(form) outside a list view than the arrows will not appear. OOB it is enabled starting UI 11.
For references
Thanks,
Jaspal Singh
Hit Helpful or Correct on the impact of response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2018 01:38 AM
How to enable/disable it as UI action??

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2018 02:15 AM
Hi Mazin,
You can use DOM manipulation with onLoad client script as below
function onLoad() {
//Type appropriate comment here, and begin script below
document.getElementById('record-paging-nowrap').style.display="none";
}
for hiding. But if you view it in list it would be up.
Thanks,
Jaspal Singh
Hit Helpful or Correct on the impact of response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2018 08:05 AM
I tried it, but no luck