Home › Forums › WinForms controls › Xceed Grid for WinForms › Re: Fixed Footer Row
-
AuthorPosts
-
#17299 |
Yes; have I gotten into the wrong area somehow? Can you point me to a simple working example for that environment?
Imported from legacy forums. Posted by David (had 335 views)
More detail. Here’s my version of the code:
theGrid.FixedFooters.Add(new TextRow(“Fixed Footer”));
Compiling that leads to:
Error 4 ‘Xceed.Wpf.DataGrid.DataGridControl’ does not contain a definition for ‘FixedFooters’ and no extension method ‘FixedFooters’ accepting a first argument of type ‘Xceed.Wpf.DataGrid.DataGridControl’ could be found (are you missing a using directive or an assembly reference?) C:\work\Everest\UI\MBSAllocationModelViewApplication\Views\CapitalMoveView.xaml.cs 76 29 MBSAllocationModelViewApplication
Error 5 The type or namespace name ‘TextRow’ could not be found (are you missing a using directive or an assembly reference?) C:\work\Everest\UI\MBSAllocationModelViewApplication\Views\CapitalMoveView.xaml.cs 76 50 MBSAllocationModelViewApplicationI hacked around some and managed to find a way that might add FixedFooters:
theGrid.View.FixedFooters.Add(new TextRow(“Fixed Footer”));
But that still fails on not knowing what TextRow is.
Here are the current “using” statements:
using Xceed.Wpf.Controls;
using Xceed.Wpf.DataGrid;
using Xceed.Wpf.DataGrid.Converters;
using Xceed.Wpf.DataGrid.Views;
using Xceed.Wpf.DataGrid.ValidationRules;
using Xceed.Wpf.DataGrid.Stats;Imported from legacy forums. Posted by David (had 401 views)
Hi!
The same missing reference i have.
Anyone know the issue? Or is it unavailable in v 3.1
Or maybe u need to pay a lot of money for it
Imported from legacy forums. Posted by Dawid (had 279 views)
Hi,
Could you do a quick test with the latest version to see if that solves your issue?
Latest packages:
http://xceed.com/pages/TopMenu/Downloads/Updates.aspx?Lang=EN-CAIf the problem persists, please send a sample project which demonstrates the issue to support@xceed.com so that we may investigate further (please also include a link to this forum thread for reference).
Imported from legacy forums. Posted by Diane [Xceed] (had 370 views)
I have just send my sample app to given address 😀
Hope this is just my stupid mistake!
Imported from legacy forums. Posted by Dawid (had 2143 views)
Hi David and Dawid,
The original thread was in regards to the Grid for .NET where the SummaryRow exists. To make things easier we split the thread in two and moved the 2nd part to the DataGrid for WPF forums.
Original thread:
http://xceed.com/CS/forums/thread/17899.aspxWhen using the WPF DataGrid the equivalent would be to use the StatRow.
http://doc.xceedsoft.com/products/XceedWpfDataGrid/SummariesAndStatistics.html
http://doc.xceedsoft.com/products/XceedWpfDataGrid/Statistical_Functions.htmlImported from legacy forums. Posted by Diane [Xceed] (had 1142 views)
-
AuthorPosts
- You must be logged in to reply to this topic.