Completed
Last Updated: 29 Mar 2021 05:48 by ADMIN
Release LIB 2021.1.329 (29/03/2021)

Setting the Content property of DataFormDataField in the AutoGeneratingField event handler doesn't take any effect. The value should be displayed in the editor area of the data field.

Use manually defined data fields or use a dispatcher in the AutoGeneratingField event handler in order to delay the Content setting.

Completed
Last Updated: 15 Feb 2021 07:54 by ADMIN
Release LIB 2021.1.215 (2/15/2021)

Setting the Content property of DataFormDataField doesn't take any effect. The value should be displayed in the editor are of the data field.

To work this around, you can use a custom data field.

public class CustomDataFormDataField : DataFormDataField
{
	protected override Control GetControl()
	{
		if (this.Content != null)
		{
			return this.Content as Control;
		}
		return base.GetControl();
	}
}

Completed
Last Updated: 04 Feb 2021 06:14 by ADMIN
Release LIB 2021.1.208 (2/8/2021)
When using a field without a RadDataForm, an null reference exception is thrown when it is focused. 
Completed
Last Updated: 20 Mar 2018 16:23 by ADMIN
// Telerik.Windows.Controls.RadDataForm
private void OnCurrentItemPropertyChanged(object sender, PropertyChangedEventArgs e)
{
	if (sender != null)
	{

// this causes the exception when called from non-UI thread
// use Dispatcher.Invoke

		this.IsItemChanged = true;
	}


Available in LIB version: 2017.2.529
Unplanned
Last Updated: 15 Feb 2017 10:35 by ADMIN
Completed
Last Updated: 13 Oct 2016 06:53 by Roar
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: DataForm
Type: Bug Report
1

			
Unplanned
Last Updated: 08 Feb 2017 17:05 by ADMIN
Completed
Last Updated: 01 Sep 2021 11:02 by ADMIN
Completed
Last Updated: 12 Aug 2015 13:54 by ADMIN
Declined
Last Updated: 30 Apr 2015 10:39 by ADMIN
Declined
Last Updated: 04 Jun 2019 08:21 by ADMIN
ADMIN
Created by: Boris
Comments: 4
Category: DataForm
Type: Bug Report
1
Reproducible only in .Net 4.5. 
Unplanned
Last Updated: 09 Aug 2016 08:48 by ADMIN
ADMIN
Created by: Boris
Comments: 0
Category: DataForm
Type: Bug Report
0

			
Completed
Last Updated: 20 Oct 2014 17:01 by Ron Frick
Resolved with LIB version 2014.1.602.