Hi,
Is there a way to customize the same wizard widget without interlinking and not using wizard items individually?
Below is the one I want to achieve(wizard widget without links and labels in between):
Thanks,
Sahithi
Hi Gnana Sahithi,
You can also customize the navigation wizard widget's CSS definitions as per your requirement..
see this sample app - ProgressWizard
refer the attached .oml file
Hope this helps you!
Kind regards,
Benjith Sam
Hi Gnana,
Sorry for the late reply.. For the mentioned use-case, you just have to define/override/customize the below mentioned wizard CSS class definition with the required property value.
.wizard-wrapper-item.past .wizard-item-icon { background-color: var(--color-primary); border-color: var(--color-primary); color: var(--color-neutral-0); }
Glad to help you :)
You can clone the component and change what you need.
For that, open the OutsystemsUI module (it will open a clone version), copy the widget and it's dependencies for the module that you want, and then edit it there.
Hope this can help.
Best regards,
Ricardo M Pereira
Try the below discussion thread:https://www.outsystems.com/forums/discussion/47586/styling-of-wizard-pattern-for-web/
For this specific layout which you want to create using wizard you can follow below steps and you will get what you want:
What we are doing in above steps is using vertical layout of the wizard because it has same structure which you want (step label is at the right side of the icon/ number) and then with containers and their arrangement making it horizontal again.
Simple right?