I believe you were asking about how to place a row of filter fields in the
table view, correct? If so, you can simply add these to the column header of
your table view's scroll pane. You can use a BoxPane or TablePane for the
header and add your TableViewHeader and filter component to it:
<ScrollPane>
<columnHeader>
<BoxPane orientation="vertical" styles="{fill:true}">
<TableViewHeader tableView="$myTableView"/>
<BoxPane>
<TextInput prompt="Filter Field 1"/>
<TextInput prompt="Filter Field 2"/>
<TextInput prompt="Filter Field 3"/>
</BoxPane>
</BoxPane>
...
On Aug 31, 2011, at 6:39 AM, prophe wrote:
> Anybody know how to do filter like I've described in first message?
>
> -----
> Thank you!
> --
> View this message in context:
> http://apache-pivot-users.399431.n3.nabble.com/Filter-in-TableView-tp3215369p3297994.html
> Sent from the Apache Pivot - Users mailing list archive at Nabble.com.