Question
3
Replies
144
Views
Posted: March 3, 2017
Last activity: March 7, 2017
Closed
Way to hide 'count' of grouped items on report browser?
I have some reports that I view on the report browser. There is an option in the report definition to group results, in this case by a date property. However, I have a requirement to hide the 'count' of the grouped items. Note: I am also displaying groups using a custom section if that makes a difference.
Hello Cameron,
Thanks for writing to the PSC.
As per your description, that is last column . So, you have to hide the last column. For that you can use below script:
$("#tableID th:last-child, #tableID td:last-child").remove();
OR
$('td:last-child').css('display ','none');
Note: If you add all this in user work form , it will impact the whole application.
Hope this help to resolve your issue.
Thanks:
Gurpreet Kaur