Oracle ADF is a powerful application framework for building next generation enterprise applications. This blog discusses some interesting use case scenarios and solutions using ADF and the underlying Java EE technologies.
The views expressed on this blog are my own and do not necessarily reflect the views of my employer.
Thursday, May 20, 2010
Internationalizing the display name of train stop
There is an interesting post by Duncan on decorating the ADF train component. If you want to localize the display name of train stop, you can try out the below EL.
#{adfBundle['Your ResourceBundle'].SomeKey}
The information was pretty useful. But in the latest JDeveloper 11.1.1.4, the correct syntax for the EL expression is as follows: #{adfBundle['Your ResourceBundle'] ['SomeKey']}
1 comment:
The information was pretty useful. But in the latest JDeveloper 11.1.1.4, the correct syntax for the EL expression is as follows:
#{adfBundle['Your ResourceBundle'] ['SomeKey']}
Just FYI.
Thanks
Post a Comment