Radzen Steps - Not Displaying Steps

Afternoon,

I have tried to style and use the various settings on Radzen Steps, but is it possible to get the functionality (validation checks etc) of the Steps component without having the steps displayed e.g. even though all steps are available in the process I don't want to display the steps in the UI.

Many thanks

Hi @Calarion,

You can use CSS to hide the steps:

<style>
.rz-steps.hidden-steps .rz-steps-item {
   display: none;
}
</style>

<RadzenSteps class="hidden-steps">

Many thanks. Still seems to be displaying a row where it would be but I'll try adjust my styling accordingly

.rz-steps.hidden-steps > ul {
   display: none;
}

will hide that row.