cancel
Showing results for 
Search instead for 
Did you mean: 

Language settings components in Design Studio 1.5

Former Member
0 Kudos

Hi,

Using the DS version 1.5 we want to change the language settings for a certain component, in this case the Filter Panel.

This panel contains two pre-defined buttons, texts are in English ('Apply' and 'Cancel'). I want the texts on these buttons to show in Dutch.

We momentarily do (and can) not use the BI Platform.

Does anybody know how to change the language settings for this (and other) component?

Accepted Solutions (1)

Accepted Solutions (1)

former_member268221
Discoverer
0 Kudos

Hi Miranda,


You can hide the buttons in the CSS stylesheet.
For example:


.myNav *.sapUiBtn.sapUiBtnNorm.sapUiBtnS.sapzenfilterpanel-BtnClear.sapUiBtnStd {

visibility:hidden;

}

.myNav *.sapUiBtn.sapUiBtnNorm.sapUiBtnS.sapzenfilterpanel-BtnSubmit.sapUiBtnStd {

visibility:hidden;

}

.myNav *.sapUiBtn.sapUiBtnDsbl.sapUiBtnS.sapzenfilterpanel-BtnSubmit.sapUiBtnStd {

visibility:hidden;

}

.myNav *.sapUiBtn.sapUiBtnDsbl.sapUiBtnNorm.sapUiBtnS.sapzenfilterpanel-BtnSubmit {

visibility:hidden;

}

After that add a buton and use 'On Click' “FILTERPANEL.submit();” or "FILTERPANEL.cancel();".

Answers (0)