3 Answers, 1 is accepted
Can you post an example of your business objects collection?
Sincerely yours,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Vlad,
Following is a sample property :
Public Class MyClass
.---
Public Default Property MyPropertyContainer(PropertyName as string) as object
Get
Return GetPropertyValue(PropertyName) ' Returns the value of the property from some internal structure(Dictionary),
End Get
Set (byval value As Object)
SetPropertyValue(Propertyname.value) ' Sets the value of the property to the internal structure
EndSet
End Property
---
End class
I have a List(Of MyClass) and want to bind the properties using MyProperty and pass the propertyname.
WPF supports it by using PropertyPath. We can give the Binding Path as follows
MyBinding.Path=new PropertyPath("[MyPropertyname]")
This will get the data from inside the internal container and display it.
It seems that SilverLight is not supporting this syntax.
Do we have any solution for this in RadGridView.
Thanks
This is a bug in GridView control, so I'll update your Telerik points.
The bug will be fixed for the next release or SP.
All the best,
Nedyalko Nikolov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
