Hi,
I have an application where I have a fixed row to display some summary values and to have the possibility to set a value for all rows.
This fixed row has to be the very lat row of the grid.
Further I need a AddNewRow in this grid, too.
This AddNewRow has to be directly under the last "normal"/non-fixed data-rows.
Do I have a chance to get this layout (via code/hack/...)?
At the moment the only solution I see is to use 2 grids one for data and adding and one grid for the editable-summary.
Regards,
Wolfgang
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.
Hi Wolfgang,
I'm guessing you are using a real data row in your data source as your "summary" row. In which case, there is no way to place the TemplateAddRow before a DataRow.
I am not sure what you have used in order to simulate editable summary row, so as a common suggestion I could advice you to use second grid configured without any headers and etc. which will be “glued” just after original one, and it will be used for your editable summary rows.
I hope that this will helps you.
As stated in my first post I use a fixed row to get a editable summary-row.
Now I need a possibility to get this fixed row as very last row, below the AddNewRow.
I know the features of AllowAddNew and RowSummaries, but they don't fulfill my requirements.
So I hope to get a solution or a hack to get my fixed row below the AddNewRow.
To make summary row fixed on the bottom you should set SummaryDisplayArea to BottomFisex
http://help.infragistics.com/doc/WinForms/2014.2/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.2~Infragistics.Win.UltraWinGrid.UltraGridOverride~SummaryDisplayArea.html
http://help.infragistics.com/doc/WinForms/2014.2/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.2~Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.html
about add New row you should use AllowAddNew property set to TemplateOnBottom
http://help.infragistics.com/doc/WinForms/2014.2/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.2~Infragistics.Win.UltraWinGrid.UltraGridOverride~AllowAddNew.html
http://help.infragistics.com/doc/WinForms/2014.2/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.2~Infragistics.Win.UltraWinGrid.AllowAddNew.html
Also I want to highlight that since summaries are values that are calculated based on the values of other objects (cells, columns, formulas and etc.) summary values are not editable, their values are change only if the value of any of the object which are include in the calculation was changed.