Skip to content

Instantly share code, notes, and snippets.

@tomasmaroscikas
Created September 13, 2020 11:21
Show Gist options
  • Save tomasmaroscikas/9e1e526c1b012689bac3a5f184ec895e to your computer and use it in GitHub Desktop.
Save tomasmaroscikas/9e1e526c1b012689bac3a5f184ec895e to your computer and use it in GitHub Desktop.
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment