Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
Error - UI Sum of groupingheader issue
posted

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

.Type(OpType.Remote)

.ColumnSettings(cs =>

{

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

Parents Reply Children
No Data