Hello.
We are using xamGrid 11.1.
We create some columns in code
TextColumn col1 = new TextColumn() { Key = "Col1", HeaderText = "Number" }; TextColumn col2 = new TextColumn() { Key = "Col2", HeaderText = "Name" }; TextColumn col3 = new TextColumn() { Key = "Col3", HeaderText = "LastName" }; TextColumn col4 = new TextColumn() { Key = "Col4", HeaderText = "Adress" }; TextColumn col5 = new TextColumn() { Key = "Col5", HeaderText = "Bool" }; TextColumn col6 = new TextColumn() { Key = "Col6", HeaderText = "Balance" }; TextColumn col7 = new TextColumn() { Key = "Col7", HeaderText = "Balance1" }; TextColumn col8 = new TextColumn() { Key = "Col8", HeaderText = "Balance2" }; TextColumn col9 = new TextColumn() { Key = "Col9", HeaderText = "Balance3" }; TextColumn col10 = new TextColumn() { Key = "Col10", HeaderText = "Balance4" }; TextColumn col11 = new TextColumn() { Key = "Col11", HeaderText = "Balance5" };
and add it to grid.
Then we create an UnboundColumn
UnboundColumn col0 = new UnboundColumn() { Key = "Col0", };
and group grid by this unboundColumn in code
xamGrid1.GroupBySettings.GroupByColumns.Add(xamGrid1.Columns["Col0"] as Column);
Let's see some situations.
1) XamGrid.ConditionalFormattingSettings.AllowConditionalFormatting is set to False
All is working.
2) XamGrid.ConditionalFormattingSettings.AllowConditionalFormatting is set to True
2.1) We don't expand the group by UI and remove grouping - all is fine
2.2) We expand the group by UI
2.2.1)Unbound column is in visible area of screen. We remove grouping - all is ok.
2.2.2)UnboundColumn isn't in visible area of screen. We remove grouping and have System.NullReferenceException in Infragistics.Controls.Grids.UnboundColumn.GenerateDataCell(RowBase row)
Hello Sergey,
We have shipped out a new service release where your issue is resolved. I'd be glad to find out if you had tested it out and if it had met your requirements.
You can download the Service Releases by logging to our web site and going to Account \Keys & Downloads.
I have logged this with development under ID: 118838 and I have also created a support ticket on your behalf: CAS-98040-W9X8D0 and have linked the development issue to it, so that you can get automatically updated, when a Service Release containing the fix is available for download. You can get the new version from our website’s “My IG”, “My Keys & Downloads” tags: https://ko.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
You can also monitor the support ticket’s progress through the “My Support Activity” tag: https://ko.infragistics.com/Membership/MySupport.aspx
Also I can say that since version 11.1 is a retired one, the fix will be available only in versions 11.2 and 12.1, so I can suggest you download some of them.
Hello, do you have any suggestions about this problem?
Hello,
Have you reproduce this situation?