This question is locked. New answers and comments are not allowed.
Hi
Silverlight 4
Iam using Silverlight_2010_2_0812_Source and i referred
Telerik.Windows.Data,Telerik.Windows.Controls.Input,Telerik.Windows.Controls
version 2010.2.915.1040.
If i refer 0812 version dll's i get compilation error's.. thats y i choose 2010.2.915.1040 version dll's.
I have added the columns programmatically. and added the grouping on 1st column.
Sample Code
Im trying to insert new row using
Silverlight 4
Iam using Silverlight_2010_2_0812_Source and i referred
Telerik.Windows.Data,Telerik.Windows.Controls.Input,Telerik.Windows.Controls
version 2010.2.915.1040.
If i refer 0812 version dll's i get compilation error's.. thats y i choose 2010.2.915.1040 version dll's.
I have added the columns programmatically. and added the grouping on 1st column.
Sample Code
GroupDescriptor
countryDescriptor = new GroupDescriptor();
countryDescriptor.Member =
"Column1";
countryDescriptor.SortDirection =
ListSortDirection.Ascending;
this.myGrid.GroupDescriptors.Add(countryDescriptor);
//Adding Columns to Grid//
iGridViewDataColumn gvc = new iGridViewDataColumn();
gvc.Header =
"Column1sdfsdfsdfsdfsdfsdfsdfs";
gvc.UniqueName =
"Column1";
gvc.DataMemberBinding =
new System.Windows.Data.Binding("Column1");
gvc.Width =
new GridViewLength(15);
gvc.MinWidth = 50;
myGrid.Columns.Add(gvc);
myGrid.ItemsSource = testClass.GetTests();
Im trying to insert new row using
BeginInsert()
, it shows me error.
Find the attachement....