Hi,
I've got a hiearchial rad grid and i've noticed that with my DateTime columns, the ReadOnly property is not being respected on the MasterTableView level. The detail tables have these columns and the readonly property is being respected
The readonly property seems to work for the other types of columns i've used (databound, checkbox, dropdown list)
This is my definition of the column:
Thanks,
I've got a hiearchial rad grid and i've noticed that with my DateTime columns, the ReadOnly property is not being respected on the MasterTableView level. The detail tables have these columns and the readonly property is being respected
The readonly property seems to work for the other types of columns i've used (databound, checkbox, dropdown list)
This is my definition of the column:
| <telerik:GridDateTimeColumn ReadOnly="True" | |
| CurrentFilterFunction="NoFilter" | |
| DataField="DueDateTime" FilterListOptions="VaryByDataType" | |
| ForceExtractValue="None" HeaderText="Due Date" | |
| SortExpression="DueDateTime" UniqueName="DueDateTime" | |
| DataType="System.DateTime" DataFormatString="{0:d}"> | |
| </telerik:GridDateTimeColumn> |
Thanks,