How to enable the "Up & Down" arrows in lists

Mazin AliKarar
Mega Expert

Dear all,

 

How to enable the below arrows. UI actions? 

 

find_real_file.png

4 REPLIES 4

Jaspal Singh
Mega Patron
Mega Patron

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

Form header

List View on form

 

Thanks,

Jaspal Singh

 

Hit Helpful or Correct on the impact of response.

 

How to enable/disable it as UI action?? 

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.

I tried it, but no luck