Created
September 13, 2020 11:21
-
-
Save tomasmaroscikas/9e1e526c1b012689bac3a5f184ec895e to your computer and use it in GitHub Desktop.
Access binding container using data prefix in EL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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