Skip to main content
Nintex Community Menu Bar
Question

How do you remove the chunky top bar from a K2 List View?

  • November 11, 2024
  • 4 replies
  • 101 views

Forum|alt.badge.img+16

Hi,

I’ve added a List View into my form which will be used to display messages. Users edit an editable list, i then use a regular list view which is stripped back, just to show the message on the form.

However, despite me trying the settings in the list view, I am unable to get it to get the chunky top bar to not display, any ideas how to achieve this?

See attached pic

 

Thanks

4 replies

Forum|alt.badge.img+6
  • Nintex Employee
  • November 12, 2024

Hi there,

 

Depending on how your view on your form is configured, the view header can be set to not show when Collapsible is set to false and the view header title is empty:


Please give this a go and see if that works for you. 

 

Kind Regards,

Gem


Forum|alt.badge.img+16
  • Author
  • Scout
  • November 13, 2024

Hi there,

 

Depending on how your view on your form is configured, the view header can be set to not show when Collapsible is set to false and the view header title is empty:


Please give this a go and see if that works for you. 

 

Kind Regards,

Gem

Hi Gem,

 

Thanks for your reply. -It’s not just the title I want to hide, but the whole area where the title area is as per my pic. 


Forum|alt.badge.img+6
  • Nintex Employee
  • November 13, 2024

Hi there,

 

If your list view has anything configured in the toolbar section, the toolbar area will still display, so make sure there are no controls in the toolbar of the list view.
 

If there are hidden controls on your list view, then you will need to inject some custom CSS for it not to show. Try this in a data label added to the toolbar, with Literal set to true and Prevent XSS set to false:


<style>
.theme-entry .toolbars.single, .theme-entry .toolbar-wrapper, .theme-entry .toolbar, .theme-entry .toolbars.single .toolbar 
{
    min-height: 0;
    height:0;
}
</style>

Note, you will still need to ensure Collapsible is set to false and remove the view header title.


Hope this helps!

 

Kind Regards,

Gem


MillaZ
Nintex Employee
Forum|alt.badge.img+22
  • Nintex Employee
  • November 18, 2024

Hi ​@Sharpharp1 
Did Gem’s response answer your question?