Oracle adfのExpressionBuilderを使用して現在の日付を設定するにはどうすればよいですか?jdeveloper 11.1.1.3.0を使用しており、入力日付(ADFfaces.common.component)を使用しています
2 に答える
The expression builder is used to build EL expressions that reference a method or a value property. Its not meant to set a value but to make it available for editing. One option would be to use a method expression to invoke an action on a manage bean that then sets the value. However, in JSF 1.2 you cannot pass arguments to an EL method and for this reason you would need a work around for setting a date. The work around is that the method expression (and thus the press of a button) invokes a method, which then creates the current date (or whatever date you want to pass in) and sets it on the component directly (though setting it on the component model works much better IMO).
Frank
もう1つのオプションは、データソースフィールドにビジネスサービスレイヤーで定義されたデフォルト値を設定することです。したがって、たとえばADF BCを使用している場合、フィールドのデフォルトはadf.currentDateになります。