Unplanned
Last Updated: 07 Dec 2016 09:20 by Tom
RadDataForm should support DataAnnotations validation attributes defined in MetadataType partial classes.
Declined
Last Updated: 30 Apr 2015 10:39 by ADMIN
Completed
Last Updated: 24 Apr 2015 14:08 by ADMIN
Unplanned
Last Updated: 05 Aug 2016 14:49 by jen
Created by: jen
Comments: 1
Category: DataForm
Type: Feature Request
2
Since the EditEnding and EditEnded don't always get thrown when the dataform leaves the edit mode, it would be helpful to have an event thrown whenever the dataform's Mode Changes.


(this was already suggested an approved for the silverlight UI)
Completed
Last Updated: 01 Sep 2021 11:02 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: 03 Aug 2016 11:15 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: DataForm
Type: Feature Request
1

			
Completed
Last Updated: 12 Aug 2015 13:54 by ADMIN
Unplanned
Last Updated: 08 Feb 2017 17:05 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

			
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
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: 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: 21 Mar 2014 12:24 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: DataForm
Type: Feature Request
0
Fixed with LIB version 2014.1.0324.
Completed
Last Updated: 20 Oct 2014 17:01 by Ron Frick
Resolved with LIB version 2014.1.602.
Unplanned
Last Updated: 09 Aug 2016 08:48 by ADMIN
ADMIN
Created by: Boris
Comments: 0
Category: DataForm
Type: Bug Report
0

			
Declined
Last Updated: 03 Nov 2014 09:05 by ADMIN
Created by: John Hodgson
Comments: 1
Category: DataForm
Type: Feature Request
0
When you have a child object in your data model the data form should parse through the contents and place them in a group box or something similar.
Completed
Last Updated: 10 Jun 2016 08:34 by ADMIN
Allow the DataFormValidationSummary control to be used outside the context of RadDataForm.
1 2