Hi, I want to change the GroupAreaText in the code behind similar like grid.GroupingSettings.EmptyGroupAreaText = "123".
How can I do this? I use the "BoundDataField" object and when I group a column I want to display the "Header.Text" value inside the "GroupAreaText"!
BR
Hello,
Thank you for posting in the Infragistics community !
I will prepare a sample for your reference that demonstrates how this can be achieved and upload it in this thread.
Please find the attached sample below. It handles the GroupedRowInitialize event to modify the default GroupedRow text. Please let me know if this meets your requirement.
Hi,
I have investigated this issue, and I have asked our engineering staff to examine this further. To ensure that it will receive attention, I have logged this behavior in our internal tracking system with a Development ID of 188060. The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.
I will leave this case open and update you with any new information after the review. You can also continue to send updates to this case at any time.
You can view the status of the development issue connected to this case by selecting the "Development Issues" tab when viewing this case on the web site.
Our engineering team reviewed this issue and stated it as a correct behavior of the grid. Actually when you add columns in code behind you should add them to the WebHierarchicalDataGrid, rather than the WHDG.GridView:
BoundDataField col1 = new BoundDataField(); col1.DataFieldName = "ClaimNumber"; col1.Key = "ClaimNumber"; col1.Header.Text = "Claim Number"; this.WebHierarchicalDataGrid1.GridView.Columns.Add(col1); this.WebHierarchicalDataGrid1.Columns.Add(col1);
When the text for the element is set the code look for the columns collection of WebHierarchicalDataGrid1. However since columns were added to WebHierarchicalDataGrid1.GridView the first was empty and the Header.Text of the columns was not available, which was causing this issue.
Please correct this in your code and let me know if you have any further questions on the matter, I will be glad to help.
Hello, this code block is a suggestion from one of your colleague! Please see "Dynamical data binding" (http://ko.infragistics.com/community/forums/t/92817.aspx) in your froum. I had several problems when I didn't use the GridView. BR
Thank you for your feedback !
As you notice both approaches are possible. Initially you would want to add columns to the WebHierarchicalDataGrid, as shown in the documentation:
http://help.infragistics.com/Help/Doc/ASPNET/2014.2/CLR4.0/html/WebHierarchicalDataGrid_Data_Binding.html
Of course depending on the scenario the other would be recommended, as our colleague has suggested in the "Dynamical data binding" thread. Please let me know if adding columns to the WebHierarchicalDaataGrid causes other issues in your application. If this is not the case then you are fine going for this.
Looking forward to hearing from you.
I'm just following up to see if you need any further assistance with this issue. If so please let me know.
Hi, as you suggested I opened a new post ("Data binding") in the Forum. BR