Hi,
We have seen some posts about this but they have not helped us.
It is the dreaded, the columns lineup OK in the grid, but when we go to the report, they do not.
We have added a small project that resembles our scenario as much as possible.
Look forward to your reply.
Thanks
Forecast 5 Dev Team
Hello,
Do you mean the child band columns in the report are not aligned in the same way as XamDataGrid?
Thank you,Mihoko Kamiishi
Yes, that's correct.
Please have a look at the sample project.
The child rows are indented to the right in the print preview (as well as when printing).
Even though in the sample app, there are a little indented to the left.
Thank you very much for pointing this out.
We will give it a go and get back to you.
If you have any other questions, please do not hesitate to ask.
There is CellClickAction property under FieldLayout.FieldSettings, so if you set “SelectReocrd” to this property it should select a row when a cell is clicked. The below is the example in your sample.
------------------------ <dataPresenter:FieldLayout x:Key="master" x:Shared="false">… <dataPresenter:FieldLayout.FieldSettings> <dataPresenter:FieldSettings .... CellClickAction="SelectRecord"/> </dataPresenter:FieldLayout.FieldSettings>… </dataPresenter:FieldLayout>------------------------
There is only one last thing.
At the moment, the behavior of selecting a cell is to go into edit mode.
How do I stop this from happening in the treegrid?
I want it to select the row instead.
Forecast 5 Dev team.