Re: exclude a column from a grid component, by a condition

2012-02-02 Thread Vladimir Bauer
Thanks, Dusko! This approach works! Dusko Jovanovski написал: 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! >

Re: exclude a column from a grid component, by a condition

2012-01-31 Thread Dusko Jovanovski
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 from a grid component, by a conditio