cancel
Showing results for 
Search instead for 
Did you mean: 

customize backoffice config flow wizard done button label

0 Kudos

Need to provide a custom label for the done button in Config flow wizard. I do not want to customize the action. Pl me know how do we do this?

0 Kudos

In other words, i want to override the label provided in configurableflow widget for done button in my extension.

View Entire Topic
Former Member
0 Kudos

, We can set a label by using custom renderer as below instead of wz:done

 <wz:custom handler="flowWizardDoneHandler" label="Done/anycustomlabel"> </wz:custom>

create a bean definition for flowWizardHandler implementing FlowActionHandler and use the ref in the handler property as defined above override the perform method()

 public void perform(final CustomType customType, final FlowActionHandlerAdapter adapter, final Map<String, String> params)
 {
     adapter.done();
 }
 

Thanks Seb

Former Member
0 Kudos

Hello ,

i have a problem also with the done button. I am using the DE Login, but the Label of the Done Button will showen in EN. Where can i change the label for this label?

Thanks

Former Member
0 Kudos

Hi , DId you check "custombackoffice-locales_de.properties" also has the localization labelproperty=value ? . Thanks Seb