That's very interesting. I wasn't aware of EL. Definitely worth looking into.
On Aug 24, 2010, at 5:08 PM, Dirk Möbius wrote:
> Greg Brown wrote:
>> However, there may still be something we can do. Let's give it some thought.
>
> Maybe Pivot should go the JSF route and support EL expressions:
>
> <PushButton enable="${!listView.selectedRanges.empty}"/>
> <PushButton enable="${listView.selectedItems.length > 0}"/>
> <PushButton enable="${listView.selectedItem != null}"/>
>
> Apache commons-el comes to mind.
>
> Dirk.