Hi,
Is there the possibility to put summary in the grouped rows?Take the xamFeatureBrowser XamDataGrid-RowSummaries-CustomStyling example:1)Set Summary Diasplay Area to TOP2)Set Group by Display Area to DataRecordsOnly3)Drag Team column and group by Team: we see two grouped rows4)Expand the first row and see the summary row right below the grouped row.What I ask is: can i have the summaries directly in the grouped row?(or can I format the option -InGroupByRecords- in a way that allow correct horizontal positions of the summary text in the corresponding column?)Another question:I need to allow users to click on summary values to perform further actions based on the source column of the selected summary value in the grouped row selected.So I have to retrieve the source colum name and also navigate somehow the hierarchical tree of the groupBy to find all the parent groups if any.How can I navigate through the GroupBy tree?
VALERIO
Hello Valerio,
Regarding formatting : You can try the StringFormat property of the SummaryDefinition. You can see an example of that in the XamFeatureBrowser under RowSUmmaries - Formatting Row Summaries.
If you want to be able to click or perform some action on the summaries, you can see an example of that in the XamFeatureBrowser under RowSummaries - Custom Button in Summary Template. For this, you would have to retemplate the SummaryResultsPresenter. You can also handle the PreviewMouseLeftButtonDown event of the XamDataGrid and use the Snoop Tool to investigate the element tree of the XamDataGrid and you application and determine what you have to find/retemplate.
Thanks for the quick replay, formatting with the stringformat could be an option, but it would surely drive me crazy, because I need to tab text in the correct column alignment and I don't want to think about allowing user to size columns and other things like that....Let me post an image of the grid i'm working on. As you can see I don't need the summary row below the header row of each group. I would like to load summaries directly in the header row. If the only option is to use SummaryDisplayArea.InGroupByRows I will manage that way....
VAlerio
Here's what I am getting when using your code. The summaries as still aligned correctly. I am using the latest service release for 9.2 (9.2.20092.2001). There must be something else affecting this behavior. Can you please give us more information on your setup/environment or put together a small isolated sample with this behavior so that we can look into it.
Thanks.
Hello Alex, you're right: with the last service release I have no more that problem!The only thing left seems to be alowing the summary be placed on the same line of the description header.I post my test project anyway if you want to work with.
Sorry here it is
So,
From what I can see, this is hard-coded inside the ControlTemplate, with a StackPanel with Orientation-Vertical. Of course, this is necessary, because if you have a summary for the first field, it will overlap with the description of the group by record.
However, if you would like to change that and you know that you will not have a overlapping summary, you can set a negative top margin or TranslateTransform.
I am attaching your project modified with this change.
You can find this style in the DefaultStyles directory in the Infragistics folder if you want to further modify it.
Thank you very much
Valerio
Hello Alex,
I need to modify the style of the GroupByrecordPresenter at runtime.Can I load the style (an x:key in the xaml page targeting the igDP:GroupByRecordPresenter) in the InitializeRecord event?How can I loop through the Presenter objects to find the Group I'm looking for?Thanks in advanceVALERIO
In this case, you can modify the groupby are and move it to the right or manipulate the spacing between the group by labels. You can see example of that in the XamFeatureBrowser under XamDataGrid - Themes and Custom STyles - Custom GroupByAreaMulti Style
Yes, those properties work correctly and I've already set them.
What I would like is to avoid the whole split to the right of the layout as soon as a group is dragged into the groupArea. See the picture attacched from the previous project.
Valerio,
You can set the CellMaxWidth, LabelMaxWidth properties of the field as well as disallow resizing and/or field moving.
Hi Alex, is there the possibility to fix the colums width (I have the columns visible above the groupByrecords, see the old project attacched) and avoid the right movement of the entire field column when adding fields to the groupbyAreaMulti area? That because I have a panel below the grid (showing elements that don't below to the datasource) that must be always aligned with the grid columns.
Thanks in advance, Valerio