Good day everybody!
>
> I need to exclude a column from a grid component, by a condition.
> t:exclude parameter of a grid component provides ability to exclude any
> column, but with no condition.
>
> So far I have following code, but I think it is a bit ugly, because i
Try this:
.tml:
.java:
public String getExcludeColumn(){
if(excludeCondition)
return "somecolumn";
else return null;
}
I didn't test this code, but it should work.
2012/1/31 Vladimir Bauer
> Good day everybody!
>
> I need to exclude a column fro
Good day everybody!
I need to exclude a column from a grid component, by a condition.
t:exclude parameter of a grid component provides ability to exclude any column,
but with no condition.
So far I have following code, but I think it is a bit ugly, because it is
repeating same line with grid