This is from a single issue logged elsewhere:
It would be nice to be able to specify which columns are and
are not filterable. I think it could look like this:
<iam:tablefilter attachToId="x"
excludedColumns="col1,col2"></iam:tablefilter>
Adding excludedColumns or includedColumns depends on the situation. For me
excludedColumns list helps.
----------
Additional notes:
Are those ids? Are ids always right - or are indexes possibly right
sometimes too? I might suggest that perhaps ant-style include/exclude
might be easier to read, maintain and parse:
<iam:tablefilter attachToId="x">
<excluded columnId="A" />
<iam:tablefilter>
~or~
<iam:tablefilter attachToId="x">
<excluded columnIndex="0" />
<iam:tablefilter>
Delete comment Comment 1 by gohilumesh, Aug 06, 2008
I would go this way
<iam:tablefilter attachToId="x">
<excluded columnIndex="0" />
<iam:tablefilter>
It is easy for maintanance
Delete comment Comment 2 by bkardell, Aug 07, 2008
Great -- does that mean you're taking it on :) ??
Delete comment Comment 3 by gohilumesh, Aug 08, 2008
Yes i am taking this
Owner: gohilumesh
Delete comment Comment 4 by gohilumesh, Aug 12, 2008
if there is more then column to be excluded then how it should be
eg:
<iam:tablefilter attachToId="x">
<excluded columnIndex="0, 1, 5" />
<iam:tablefilter>