Please Refer Image under TExt
Thanks
I believe that you can set the description in the InitializeGroupByRow event. it would be something like e.Row.Description = "....."
thanks for your Reply , yes u r correct , i already write a code in Intialize grouprow event. its works for first group only. i can't able to assign Descrption for second groupby column headers.
Regards
saravanan
Can you be specific about the error that gets returned?
Also try this:
If e.Row.Column.Key = "DocumentNbr" Then
e.Row.Description = "Doc #: "
End If
and see if this works... if it does work just add the pieces in one at a time till you find the one that generates the error....
thanks for u r reply,
in this code is worked Single Group only, its not working multiple grouping option, throw run time error ( error desc : Object reference not set to an instance of an object.)
, see attachement image
I think the problem you are having is because you might be trying to get row information that is part of the groupby band.
my guess is you are erroring out when you are trying to set the description for Batch Nbr. If so this is because the rows information being passed back at this point are the groupby rows (Batch Nbr and DocumentNbr). You would have to recurse through the childbands to pull the information you are looking for. Testing for IsGroupBy on each band.
Maybe the Infragistics team has a good mechanism for getting this info you need.... sorry I cannot provide any more information.
yes u r right , i need get row information and to show group by row , how it is possible , multiple grouping
Hello Saravanan,
I am following up to ask if you have addressed the issue you are having? Have you reviewed my sample that I attached previously?