Page 1 of 1

Set column readonly?

PostPosted: Wed Nov 29, 2017 3:42 pm
by johnit
I want to set a single column of my databook readonly? How is this possible?

Re: Set column readonly?

PostPosted: Wed Nov 29, 2017 3:43 pm
by rjahn
This is an easy task:

Code: Select all
databook.getRowDefinition().getColumnDefinition("NAME").setReadonly(true);


The Rowdefinition contains information about all available columns!