CarbonArchitect Posted October 21, 2019 Report Share Posted October 21, 2019 I would like to move the toolbar (with the download, bulk edit buttons etc.) on a tabular DataPage report to the bottom of the table/page. Any help appreciated! Quote Link to comment Share on other sites More sharing options...
0 Vitalikssssss Posted October 21, 2019 Report Share Posted October 21, 2019 Hi @CarbonArchitect, It is possible to place top menu bar with a help of JS code snippet from below: <script type="text/javascript"> function movePA(event) { var pa = document.querySelector("table[id^='PageActionsCtnr']"); var nb = document.querySelector("table[id^='NavigationTableBottom']"); nb.parentNode.insertBefore(pa, nb.nextSibling); } document.addEventListener('DataPageReady', movePA); </script> Place above code into Datapage footer (ResultSet section). Make sure you you disable HTML editor. Hope this helps. Regards, vitalikssssss Quote Link to comment Share on other sites More sharing options...
0 CarbonArchitect Posted October 22, 2019 Author Report Share Posted October 22, 2019 Hi Vitaliks, thanks very much for your reply. Unfortunately nothing is happening when I put this in and I have tried it with a few datapages. I've disabled the HTML editor for the header and footer. Could it be that some code in my header is interfering with it? Quote Link to comment Share on other sites More sharing options...
0 Vitalikssssss Posted October 23, 2019 Report Share Posted October 23, 2019 Hi @CarbonArchitect, Do you have any other custom code in this Datapage? Did you try checking code on direct URL? Do you see any errors in browser console (F12)? You may find attached copy of my Datapage which works fine. Regards, Vitalikssssss CaspioData_2019-Oct-23_1044.zip Quote Link to comment Share on other sites More sharing options...
0 CarbonArchitect Posted October 23, 2019 Author Report Share Posted October 23, 2019 I've managed to get it working on some datapages but am still troubleshooting as to why it doesn't work on others. It doesn't work on one of them when the sticky header row is enabled but disabling this with others doesn't help so there must be a couple of things. When I find out more I will post again! Quote Link to comment Share on other sites More sharing options...
Question
CarbonArchitect
I would like to move the toolbar (with the download, bulk edit buttons etc.) on a tabular DataPage report to the bottom of the table/page.
Any help appreciated!
Link to comment
Share on other sites
4 answers 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.