Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide group title within SimpleForm

Tags:

sapui5

I want to hide the title starts a new group. I tried it by setting visible to false and tried to add custom CSS classes as well. It did not work. How can I hide the group title within a SimpleForm.

Thank you.

like image 276
vivek Avatar asked Jan 19 '26 18:01

vivek


1 Answers

It may not be possible to hide the sub header while maintaining groups with the control properties. However with some CSS it is achievable

Add a custom CSS class to the SimpleForm control

<f:SimpleForm class="formHiddenTitle" ...

The CSS would be as below :

.formHiddenTitle .sapUiFormContainerTitle .sapUiFormTitle{
    display:none;
}

This will hide all Form Title tags in all all groups.

like image 182
Stephen S Avatar answered Jan 23 '26 02:01

Stephen S