Question

I have a grid with one fixed column and many other columns. When i do a print (datagrid.Print()) on the second page i have the columns that would not fit onto the first page but without the fixed column (which is only printed on the first). I would like to repeat the fixed column on every page i print as it is the key to the data. Is this possible?

Was it helpful?

Solution

In your PrintTableView you can set the FixedColumnCount. e.g

            <xcdg:DataGridControl.PrintView>
            <xcdg:PrintTableView
                          IsAlternatingRowStyleEnabled="True"
                          FixedColumnCount="1" >...
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top