Implicit pageFlow object in BEA10 jsps
How do I get IDEA to recognize them in EL statements? For instance, in the following tag the 'pageFlow' object cannot be resolved:
<netui-data:callMethod method="disableDelete" object="$" resultId="isdelete"/>
请先登录再写评论。
You may need to specify the scope that they are in. They may be request attributes (requestScope).
I guess I wasn't clear. BEA10 uses the beehive framework. In this framework, pageFlow is an implicit object like requestScope. See http://beehive.apache.org/docs/1.0.2/netui/databinding.html#implicit-objects-netui-pageFlow.
Is there a way I can get IDEA to recognize the pageFlow object?