I have a RadDataForm that contains a number of fields.
When I add a DataFormDateField and bring up the form in ReadOnly mode, the field is disabled. When I add a DataFormDataField that contains a RadDateTimePickerand bring up the form in ReadOnly mode, the field is not disabled.
In other words, this works:
And this does not:
Is there a way to get a DataFormDataFields contained controls to respond to the form's Mode?
When I add a DataFormDateField and bring up the form in ReadOnly mode, the field is disabled. When I add a DataFormDataField that contains a RadDateTimePickerand bring up the form in ReadOnly mode, the field is not disabled.
In other words, this works:
<telerik:DataFormDateField Label="Contact Date" DataMemberBinding="{Binding Path=contactdt}" />And this does not:
<telerik:DataFormDataField Label="Contact Date" > <telerik:RadDateTimePicker SelectedValue="{Binding Path=contactdt}" /></telerik:DataFormDataField>Is there a way to get a DataFormDataFields contained controls to respond to the form's Mode?