DDNex Posted September 11, 2020 Report Share Posted September 11, 2020 How do I hide columns in a tabular report based upon parameters from querystring? Quote Link to comment Share on other sites More sharing options...
0 Barbie Posted September 11, 2020 Report Share Posted September 11, 2020 Hi @DDNex You might want to check this forum post which can help you with hiding a column in a tabular report. I hope this helps. - Barbie Quote Link to comment Share on other sites More sharing options...
0 AtayBalunbalunan Posted September 13, 2020 Report Share Posted September 13, 2020 You may also follow the suggestion in this post using additional DataPages. Quote Link to comment Share on other sites More sharing options...
0 Kurumi Posted January 7, 2022 Report Share Posted January 7, 2022 Hi - Sharing this, this code works great! Quote Link to comment Share on other sites More sharing options...
0 Kurumi Posted March 5, 2022 Report Share Posted March 5, 2022 Hi - Just to add, if you want to hide a column in a Pivot Report - you can use this code: Quote Link to comment Share on other sites More sharing options...
0 Kurumi Posted October 21, 2022 Report Share Posted October 21, 2022 Hi - Just an update, here are the other ways for you to hide column in the Tabular Report: Without Download/Sort Options: table[id*='cbTable'] > tbody > tr[class*='cbResultSetTableHeader'] > th:nth-child(1), td[class*='cbResultSetData']:nth-child(1){ display:none !important; } With Download/Sort Options: table[id*='FreezeTabularHeaderObj'] > tr[data-cb-name="header"] > th:nth-child(1), td[class*='cbResultSetData']:nth-child(1), #target table:nth-of-type(1) th:nth-of-type(1), #target table:nth-of-type(2) th:nth-of-type(1){ display:none !important; } Replace 1 with the position order of column to be hidden. Garry 1 Quote Link to comment Share on other sites More sharing options...
Question
DDNex
How do I hide columns in a tabular report based upon parameters from querystring?
Link to comment
Share on other sites
5 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.