Hey,
I have a problem related to unbound columns when I use the the Print and PrintPreview functions of the grid. Only the cell values of the bounded columns are printed, not the cell values of the unbounded ones. However ,the unbounded columns themselves and the associated groups are printed.
I tried adding RowPropertyCategories.All as argument in the the Print methods to achieve some sort of WYSIWYG in the printed version of the grid, but without luck.
Is it possible to print the the cell values of the unbounded columns at all or must all columns be bounded to the datasource?
Any help would be highly appreciated.
How are you populating the unbound columns? My guess is that you are populating the cells inside the InitializeRow event and they are not getting populated or are getting cleared out for the print row.
I am also having the same problem ( I'm updating a column in the aftercellupdate event and I have a dropdown bound to a column also).
Thanks
Tried it passing in RowPropertyCaterories.All and it seems to work OK now. Thanks
What options are you passing in to the Print (or PrintPreview method)? There is an optional parameter which allows you to specify what properties you want to copy from the on-screen grid to the print grid.
Not been able to solve this problem yet and not had any responses yet.
have any of you been able to solve the problem?. I'm still not able to print the cell values of the unbounded columns.