Jump to content
  • 0

Download data align to search button of reports


SadAko

Question

3 answers to this question

Recommended Posts

  • 0

Hello!

 

I contacted the support since I would also like to have this on my reports and check if this would be possible however, as per them, it is not possible to align the print out/download option into search button as it is two separate forms of the report datapage and the print out/download is already on their backend function. 

Link to comment
Share on other sites

  • 0

I guess you can do this on JavaScript

image.thumb.png.6f2d0382f6c4e1f0ad7018c23c3a80db.png

 

This only works when Results page are below the Search Form.

 

<script>


var downloadbtn = document.querySelector("nav[id^='PageActionsCtnr']");

var newpos1= document.getElementsByClassName('cbSearchButtonContainer')[0];

var searchbtn = newpos1.getElementsByClassName('cbSearchButton')[0];

newpos1.appendChild(downloadbtn);

downloadbtn.appendChild(searchbtn);
</script>

 

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...