Skip to main content

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

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 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. 


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


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


Reply