Error
UI Sum of entrys of groupingheader do 1/20 times not update when grid is grouped and filter becomes set
> Headname (!SUM! 50)
1|row
2|row
3|row
... max is 50 but filtered to 3
Version 5.15.2.2174 (MVC5)
Group Chaining
f.GroupBy()
// Einstellungen im Modalen Fenster aktivieren
.GroupByDialogContainment("window")
// Die Gruppierung wird auf der Datenquelle ausgeführt
.Type(OpType.Remote)
.ColumnSettings(cs =>
{
cs.ColumnSetting().ColumnKey("Id").AllowGrouping(false);
//cs.ColumnSetting().ColumnKey("ParendId").AllowGrouping(false);
//cs.ColumnSetting().ColumnKey("IstAktiv").AllowGrouping(false);
//cs.ColumnSetting().ColumnKey("IsNew").AllowGrouping(false);
});
Filter Chaining
f.Filtering()
// Der Filterdialog findet in einem Modal-Fenster Statt, die 2te angebotene Variante ist buggy mit spaltenMoving
.FilterDialogContainment("window")
// Modus komplex erlauben, um UND oder ODER Verknüpfungen zu gestatten
.Mode(FilterMode.Advanced)
// Remote aktiviert, die Berechnung findet auf der Datenquelle statt
cs.ColumnSetting().ColumnKey("Id").AllowFiltering(false);
//cs.ColumnSetting().ColumnKey("ParendId").AllowFiltering(false);
//cs.ColumnSetting().ColumnKey("IstAktiv").AllowFiltering(false);
//cs.ColumnSetting().ColumnKey("IsNew").AllowFiltering(false);
cs.ColumnSetting().ColumnKey("LockDataUserName").AllowFiltering(false);
cs.ColumnSetting().ColumnKey("NumerischesFeldAsString").AllowFiltering(false);
ColumnGrouped: (int) Year
ColumnFiltered: (string) index
Hello Dominic,
I'm afraid that I could not understand your issue from the provided description.
Could you please explain me again with more details about your issue? And it would be great appreciated if you attach a working sample that demonstrates the issue.
Regards,
Tsanna
I try...
i found a known Issue on your 2016.1 release documentation
I’m talking about these Components: jQuery/HTML5 Grid within IgniteUIPlease see the picture attached first for more clarity.
My Pain-Points:
1: I’d like to eskalate that issue to you (found out it already was)
2: I’m wondering what happens know after I found that issue in your known issues - want some informations if possible when this problem is tackled
3: Is it possible to request a fix, and if so, request a fix on a special product version?
- We had problems in the past upgrading from one version to another so we wanna stay with this (from our site) nearly stable version
Tec's and Spec's
Version 2015.2
Settings:
Filtering
- FilterDialogContainment(“window”)
- Mode(FilterMode.Advanced)
- Type(OpType.Remote)
Grouping
- GroupByDialogContainment(“window”)
Data
Grouped: int field / year-only-data / like “2010”, “2011” so on..
Filtered: string field / numbers-only-data / like “001”, “002”, “003” so on..
As you have noticed there is a known issue regarding row count for a group when filtering is applied after grouping. Since this row count is a total, based on the rows in a particular group, it has nothing to do with the filtering.
Currently we're not planning a fix for it.
If I can provide you with further assistance regarding this matter, please let me know.
Regards,Tsanna