Suggestion - tablist show/hide

Hello,

it would be usefull to have a property to set the tablist in rz-steps hidden similiar to "ShowStepsButtons"

it is possiblt with CSS but then all are hidden:

.rz-steps ul[role="tablist"] {
display: none;
}

You an always assign a custom class attribute via the Attributes property. Then use it in your CSS selector to make it more specific:

.my-steps ul[role=tablist] {

}
1 Like