Jump to content

Customize JasperServer repository view


atmaling
Go to solution Solved by jeff.bonis,

Recommended Posts

Hi,

I want to customize the repository view of jasper-server. When we browse the JasperServer repository it shows below columns:

Name, Description,Type, Created Date, Modified Date

 

But I want to hide "Created Date" and "Modified Date" columns.

I tried to edit the results.jsp file from WEB-INF/jsp/modules/search folder however I could hide the header of these columns but coudn't hide its values.

I am using jasperserver-4.7 commercial edition.

 

Kindly help me

 

Link to comment
Share on other sites

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

  • Solution

You can customize the column views by using themes.  Just add an "overrides_custom.css" theme to repository (root->Themes->overrides) with the following content (which will hide the "Created Date" and "Modified Date" columns):

#repoBrowse .list.resources .createdDate {

display: none;

}
 
#repoBrowse .list.resources .modifiedDate {
display: none;
}
Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...