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}
#{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:
ReplyDelete#{adfBundle['Your ResourceBundle'] ['SomeKey']}
Just FYI.
Thanks