Skip to content

Instantly share code, notes, and snippets.

View tomasmaroscikas's full-sized avatar

Tomas Maroščikas tomasmaroscikas

View GitHub Profile
@tomasmaroscikas
tomasmaroscikas / RegionsBean.java
Created September 13, 2020 11:21
Access binding container using data prefix in EL
public void listOtherBindingsEL(ActionEvent actionEvent) {
String countryName = (String)JsfUtils.getExpressionValue("#{data.com_oonyy_adf_demo_view_CountriesPageDef.CountryName.inputValue}");
System.out.println(String.format("Country name from CountriesPageDef is %s", countryName));
updateOhterBindingsInputTextValue(countryName);
}