Everything seems to be OK except for the grouping functionality. I can drag a column into the group panel and it groups properly, but after that I can drag anymore columns and I can't drag any columns out of the group panel. Attempting to expand/collapse a group gives a javascript error.
If I leave the page and come back in, everything is fine until I try to change the grouping again.
Anyone else experience anything like this?
Thanks,
Greg
8 Answers, 1 is accepted
Do you get that with the online demos like this one?
http://www.telerik.com/demos/aspnet/prometheus/Grid/Examples/GroupBy/OutlookStyle/DefaultCS.aspx
Any details/steps on reproducing the problem would be of great help in resolving it.
Kind regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Greg
This is correct but the Client mode load hierarchy demo is just below this one:
http://www.telerik.com/demos/aspnet/prometheus/Grid/Examples/GroupBy/GroupLoadModeClient/DefaultCS.aspx
Does that work as expected on your end?
Greetings,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Can you please provide more information on the problem? Do you got that on the online demos I referred previously?
I believe we will be able to help you faster if you isolate the issue in a sample runnable application and send it through regular support ticket.
Regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
I am adding the columns dynamically at runtime so I don't know if that has something to do with it or not. Phuong, are you doing the same thing?
I'm wondering if I am just missing setting a property of the field or something.
Here is the code I am using:
GridBoundColumn col = new GridBoundColumn();
rgProcesses.MasterTableView.Columns.Add(col);
col.DataField = fieldRow.FieldName;
col.UniqueName = fieldRow.FieldName;
col.HeaderText = fieldRow.FieldCaption;
if (fieldRow.FieldCaption.Length > 0)
{
col.AllowFiltering = true;
col.AllowSorting = true;
}
col.SortExpression = fieldRow.FieldSortName;
col.ItemStyle.VerticalAlign = VerticalAlign.Top;
col.ItemStyle.HorizontalAlign = (HorizontalAlign) fieldRow.FieldAlignment;
if (!fieldRow.IsFieldFormatNull())
{
col.DataFormatString = fieldRow.FieldFormat;
}
col.ItemStyle.Wrap = fieldRow.FieldWrap;
Please open a support ticket and send us an example which demonstrates these issues. We will review your scenario and we will get back to you with more info.
Greetings,
Vlad
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center